-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTutorial.Rmd
52 lines (42 loc) · 1.04 KB
/
Tutorial.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
---
title: ""
date: "`r Sys.Date()`"
output:
rmdformats::readthedown:
highlight: kate
css: PranaStyle.css
self_contained: false
keep_md: yes
---
```{r knitr_init, echo=FALSE, cache=FALSE}
library(knitr)
library(rmdformats)
## Global options
options(max.print="75")
opts_chunk$set(echo=TRUE,
cache=TRUE,
prompt=FALSE,
tidy=TRUE,
comment=NA,
message=FALSE,
warning=FALSE)
opts_knit$set(width=75)
```
# Introduction
```{r child="subsections/Introduction_to_geoSpectral/Introduction_to_geoSpectral.Rmd"}
```
# Obtaining and Installing
```{r child="subsections/Obtaining_and_Installing/Obtaining_and_Installing.Rmd"}
```
# Provided Classes
```{r child="subsections/geoSpectral_Classes/geoSpectral_Classes.Rmd"}
```
# Importing and Subsetting Data
```{r child="subsections/Importing_Data/Importing_Data.Rmd"}
```
# Accessing Data
```{r child="subsections/Accessing_Data/Accessing_Data.Rmd"}
```
# Plotting
```{r child="subsections/Plotting/Plotting.Rmd"}
```