https://github.com/m-clark/distill-workshop
This will introduce R users to the Distill format for R Markdown, for scientific communication and building websites.
https://github.com/m-clark/distill-workshop
Last synced: 3 months ago
JSON representation
This will introduce R users to the Distill format for R Markdown, for scientific communication and building websites.
- Host: GitHub
- URL: https://github.com/m-clark/distill-workshop
- Owner: m-clark
- Created: 2020-11-23T18:18:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T19:51:25.000Z (about 5 years ago)
- Last Synced: 2025-03-23T02:17:44.640Z (10 months ago)
- Language: R
- Homepage:
- Size: 15.4 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
distill-workshop
This will introduce R users to the [Distill format for R Markdown](https://rstudio.github.io/distill/), for scientific communication and building websites.
If you just want the slides, [go here](https://m-clark.github.io/distill-workshop/), though admittedly, like most slides, they are likely not going to be very useful without the context.
If attending the workshop, run the following in your R session to get the associated RStudio project. If you want, change the `destdir` to save the project in a specific place (not necessary, should default to desktop). It will open the RStudio project for you.
```r
install.packages('usethis') # if you don't have it
usethis::use_course(
'https://github.com/m-clark/distill-workshop/blob/master/distill-workshop.zip?raw=true',
destdir = NULL
)
```
If you have issues, just download that zip file (click or paste the link above into your browser), unzip it to a location of your choosing, then:
- Click on the blue .Rproj icon inside
OR
- With RStudio - File/Open Project - Navigate to the folder - Open
With your RStudio project set up, you may install Distill via `install.packages('distill')`, and are ready to participate.