forked from bbest/eds232-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_test.Rmd
53 lines (44 loc) · 1.54 KB
/
_test.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
---
title: 'Test'
---
# Readings
## Textbooks
```{r}
librarian::shelf(
glue, RefManageR)
bib <- ReadBib("ml-env.bib", check = FALSE)
BibOptions(check.entries = FALSE, style = "markdown", cite.style = "authoryear", bib.style = "authoryear")
```
The following textbooks are used in the course with these acronyms in the Course Schedule:
```{r, print_refs, results='asis', echo=FALSE, warning=FALSE, message=FALSE}
bib_txt <- function(acronym, link, bibkey){
writeLines(glue("- [_{acronym}_]({link}) "))
print(
bib[key = bibkey],
.opts = list(
check.entries = FALSE,
style = "html",
bib.style = "authoryear"))
}
bib_txt(
"SDMR", "https://rspatial.org/raster/sdm/",
"hijmansSpeciesDistributionModeling2021")
bib_txt(
"HOMLR", "https://bradleyboehmke.github.io/HOML/",
"greenwellHandsOnMachineLearning2020")
bib_txt(
"DLR", "https://drive.google.com/open?id=16Tr0IYufMnTqszkyzXzRM0XmQDjWuwXv&authuser=ben%40ecoquants.com&usp=drive_fs",
"cholletDeepLearning2018")
bib_txt(
"DLPy", "https://drive.google.com/open?id=16TxVeHT_7ktz6Oh7xcZ3uMzxHaNQ16Dc&authuser=ben%40ecoquants.com&usp=drive_fs",
"cholletDeepLearningPython2018")
```
## Articles
```{r references, results = "asis", echo = FALSE}
NoCite(bib, "zhongMachineLearningNew2021")
NoCite(bib, "elithSpeciesDistributionModels2009")
NoCite(bib, "evansModelingSpeciesDistribution2011")
NoCite(bib, "andradeENMTMLPackageStraightforward2020")
NoCite(bib, "kindtTreeDiversityAnalysis2005")
PrintBibliography(bib, .opts = list(check.entries = FALSE, sorting = "ynt"))
```