-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathREADME.Rmd
55 lines (31 loc) · 1.69 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: "globalhabml README"
output: github_document
---
An introduction to machine learning for the Global HAB Workshop May 9-13, 2022.
## Requirements
+ [R v4+](https://www.r-project.org/)
+ [rlang](https://CRAN.R-project.org/package=rlang)
+ [dplyr](https://CRAN.R-project.org/package=dplyr)
+ [readr](https://CRAN.R-project.org/package=readr)
+ [tidymodels](https://CRAN.R-project.org/package=tidymodels)
+ [ggplot2](https://CRAN.R-project.org/package=ggplot2)
+ [kknn](https://CRAN.R-project.org/package=kknn)
+ [ranger](https://CRAN.R-project.org/package=ranger)
## Installation
+ Please [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) the repository, then [clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) your fork onto your machine in a directory you can remember how to get to.
+ If you do not use github, and do not want to start, click the green code button on this page and select "Download Zip". Moved the zipped file to a directory you can find, and unzip it.
+ In RStudio, navigate to the location you cloned or moved the repository to in the Files pane. Set it as your working directory by clicking more and selecting "Set as Working Directory". You can also use:
```
setwd(path = "your/path/in/quotes")
```
+ Once the directory the repository is shown next to the R version in your console pane, run
```
install.packages("devtools")
devtools::install()
```
## Datasets in inst/tutorial_data/
## Tidymodels Links
[Official Page](https://www.tidymodels.org/)
[TMWR Textbook](https://www.tmwr.org/)
[Bigelow Reference Page](https://oj713.github.io/tidymodels/index.html)