-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
executable file
·47 lines (39 loc) · 1.1 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
---
output: github_document
---
<div style="float:left; width: 33.33%">
[Workshop Main Page](https://rverse-tutorials.github.io/Fish-Forecast-Training-Course/index.html)
</div>
<div style="float:left; width: 33.33%">
[Catch Forecast Webpage](https://fish-forecast.github.io/Catch-Forecasting-INCOIS/)
</div>
<div style="float:left; width: 33.33%">
[RWorkflow Workshop Webpage](https://rverse-tutorials.github.io/RWorkflow-Workshop/)
</div>
# Catch-Forecasting-Files
Lab scripts and Rmds for the INCOIS Catch Forecasting Workshop
# Data
```{r list_data_files, results='asis', echo=FALSE}
files = dir(pattern="RData")
if(length(files)!=0){
str = paste0("[",files,"]","(",files,")",collapse="\n\n")
cat(str)
}
```
# Rmd Files
```{r list_files, results='asis', echo=FALSE}
files = dir(pattern="Rmd")
files = files[!(files == "README.Rmd")]
if(length(files)!=0){
str = paste0("[",files,"]","(",files,")",collapse="\n\n")
cat(str)
}
```
# R Scripts
```{r list_R_Scripts, results='asis', echo=FALSE}
files = dir(pattern="[.]R$")
if(length(files)!=0){
str = paste0("[",files,"]","(",files,")",collapse="\n\n")
cat(str)
}
```