forked from LOEK-RS-Class/git4loek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_examples.qmd
More file actions
69 lines (27 loc) · 1.54 KB
/
Copy pathgit_examples.qmd
File metadata and controls
69 lines (27 loc) · 1.54 KB
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
56
57
58
# Repository examples on GitHub
## R package: CAST
[https://github.com/HannaMeyer/CAST](https://github.com/HannaMeyer/CAST)
In R, you can directly install the package from GitHub using the following commands:
```{r, eval = FALSE}
devtools::install_github(repo = "https://github.com/HannaMeyer/CAST")
remotes::install_github(repo = "https://github.com/HannaMeyer/CAST")
```
The `install.packages` function by default downloads and installs packages from [CRAN](https://cran.r-project.org/) which in itself is a repository for R packages and their version management.
```{r, eval = FALSE}
install.packages("CAST")
```
Package Page created with `pkgdown`: [https://hannameyer.github.io/CAST](https://hannameyer.github.io/CAST)
## Publishing workflows and code
[https://github.com/LOEK-RS/global_applicability](https://github.com/LOEK-RS/global_applicability)
## Teaching Materials
The materials for my Introduction to R Course are stored in a repository on GitHub:
```{r}
#| fig-column: margin
#| fig-width: 100
#| echo: false
knitr::include_graphics("https://teaching.mlspatial.org/analysis_of_ecological_data/assets/cover_image.png")
```
[https://github.com/mlspatial/analysis_of_ecological_data](https://github.com/mlspatial/analysis_of_ecological_data)
Through GitHub pages the repository is automatically rendered and published as a website:
[https://mlspatial.github.io/analysis_of_ecological_data](https://mlspatial.github.io/analysis_of_ecological_data)
You can also find the files of this git course and homepage on GitHub: