Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gavinsimpson/gams-yorku-canada-150
GAM Workshop at York University, October 2018
https://github.com/gavinsimpson/gams-yorku-canada-150
Last synced: 28 days ago
JSON representation
GAM Workshop at York University, October 2018
- Host: GitHub
- URL: https://github.com/gavinsimpson/gams-yorku-canada-150
- Owner: gavinsimpson
- License: cc-by-4.0
- Created: 2017-10-07T16:59:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T17:53:54.000Z (about 7 years ago)
- Last Synced: 2024-06-13T22:08:25.148Z (5 months ago)
- Language: HTML
- Size: 18.1 MB
- Stars: 25
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# An introduction to Generalized Additive Models with R
## York University, October 17, 2017
## Requirements
You will require a recent version of R — ideally the latest 3.4.2 release — plus an R-aware edit in which to write scripts and run code, for which I recommend RStudio. You'll also need a recent version of the **mgcv** package.
### Latest R
* [Windows](https://cloud.r-project.org/bin/windows/)
* [MacOS X](https://cloud.r-project.org/bin/macosx/)### RStudio
* [Downloads](https://www.rstudio.com/products/rstudio/download/#download)
### Packages
We'll be using the **mgcv** package for fitting GAMs; make sure you have the latest version installed!
Packages required:
* **mgcv**
* **gamair**You can install these packages using
```r
install.packages(c('mgcv', 'gamair'))
```