-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaterials.qmd
107 lines (67 loc) · 4.12 KB
/
materials.qmd
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
title: "VectorByte Training Materials 2024"
format:
html:
toc: true
toc-location: left
html-math-method: katex
css: styles.css
---
# Pre-work and set-up
## Hardware and Software
We will be using [`R`](https://cran.r-project.org/) for all data manipulation and analyses/model fitting. Any operating system (Windows, Mac, Linux) will do, as long as you have `R` (version 3.6 or higher) installed.
You may use any IDE/ GUI for `R` (VScode, RStudio, Emacs, etc). For most people, [`RStudio`](https://www.rstudio.com/) is a good option. Whichever one you decide to use, please make sure it is installed and tested before the workshop.
We will also be using Slack for additional support during the training. Please have these installed in advance. We will have a channel on Slack dedicated to software/hardware issues and troubleshooting.
## Pre-requisites
We are assuming familiarity with R basics as well as at least introductory statistics, including up through simple linear regression. If you would like materials to review, we recommend that you do the following:
***Review of R***
1. Go to [The Multilingual Quantitative Biologist](https://mhasoba.github.io/TheMulQuaBio/intro.html), and read+work through the [Biological Computing in R Chapter](https://mhasoba.github.io/TheMulQuaBio/notebooks/07-R.html).
2. In addition / alternatively to pre-work element (1), here are some resources for brushing up on R [at the end of the Intro R Chapter you can try](https://mhasoba.github.io/TheMulQuaBio/notebooks/07-R.html#readings-and-resources). There are many more resources online (e.g., [this](https://www.codecademy.com/learn/learn-r) and [this](https://www.dataquest.io/blog/learn-r-for-data-science/) ) -- pick something that suits your learning style.
***Review of statistics***
1. Review background on [introductory probability and statistics](Stats_review.qmd) ([solutions to exercises](Stats_review_soln.qmd)). You can also use the resources on [The Multilingual Quantitative Biologist - Basic Data Analyses and Statistics](https://mhasoba.github.io/TheMulQuaBio/Stats-Intro.html) through into linear models.
2. Review the conceptual basics of [Simple Linear Regression](VB_RegRev.qmd). We'll refresh fitting linear models in R as well as transformations and diagnostic plots during the workshop.
<br> <br>
# Live Workshop Materials
## Introduction to the Workshop
- [Lecture](VB_IntroTimeDepData.qmd)
<br> <br>
## Regression in R Refresher (Transformations and Diagnostics)
- [Lecture Slides](VB_RegDiagTrans.qmd)
- [Practical](VB_RegDiagTrans_practical.qmd)
- Dataset: [transforms.csv](/data/transforms.csv)
<br> <br>
## Time dependent regression analysis
- [Lecture Slides](VB_TimeDepData.qmd)
- [Practical](VB_TimeDepData_practical.qmd)
- Dataset: [Walton Co, FL Mosquito data](/data/Culex_erraticus_walton_covariates_aggregated.csv)
<br> <br>
## Basics of Forecasting Time Series using R
- [Lecture](VB_TimeSeriesBasicsR_Lecture.pdf)
- [Practical](VB_TimeSeriesForecastingPractical.qmd)
- Datasets:
+ [NEONphenologyClean.csv](data/NEONphenologyClean.csv)
+ [phenologyWeather.csv](data/phenologyWeather.csv)
+ [NEONbeetlesChallenge.csv](data/NEONbeetlesChallenge.csv)
+ [tinyForecastingChallengeCovs.csv](data/tinyForecastingChallengeCovs.csv)
<br> <br>
## Introduction to the VecDyn database
- [The VecDyn website](https://vectorbyte.crc.nd.edu/vecdyn-datasets).
- [About the VecDyn API](https://www.vectorbyte.org/blog/vecdyn-api)
- Other Materials Coming Soon!
<br> <br>
## Introduction to climate and weather data for time dependent analyses
- [Lecture](VByte_2024_Wkshp_climate.pdf)
- [GEE code (text file)](code/NEON_SJR_MODIS_LST.txt)
- dataset: [NEON_tickplots_13sites_utf8.csv](data/NEON_tickplots_13sites_utf8.csv)
<br><br>
## Gaussian Process models (GPs) for Time Dependent Data
- [Lecture Slides](GP.qmd)
- [Lecture Notes](GP_Notes.qmd)
- [Practical](GP_Practical.qmd)
- [additional R code -- df_spline.R](code/df_spline.R)
<br> <br>
## Dengue Forecasting Challenge
- [Description](VB_DengueChallenge.qmd)
- dataset: [combined_sanjuan.csv](data/combined_sanjuan.csv)
<br>
<br>