Skip to content

Instantly share code, notes, and snippets.

@feherCat
Last active June 23, 2017 14:32
Show Gist options
  • Save feherCat/16f8a85097018127d991db0dec13391e to your computer and use it in GitHub Desktop.
Save feherCat/16f8a85097018127d991db0dec13391e to your computer and use it in GitHub Desktop.
---
title: "SH3"
author: "L Feher"
date: "June 23, 2017"
output: html_document
---
##Cumulative elevation trends
```{r, include=FALSE}
SH3 <- read.csv("SH3.csv")
```
### SH3 original - including all data points (pre & post Wilma)
```{r}
OCSET_all <- lm(Original_CU~Years, data=SH3[c(-1)])
```
```{r, echo=FALSE}
summary(OCSET_all)
```
### SH3 deep - including all data points (pre & post Wilma)
```{r}
DCSET_all <- lm(Original_CU~Years, data=SH3[c(-14)])
```
```{r, echo=FALSE}
summary(DCSET_all)
```
### SH3 shallow - including all data points (pre & post Wilma)
```{r}
SCSET_all <- lm(Shallow_CU~Years, data=SH3[c(-14)])
```
```{r, echo=FALSE}
summary(SCSET_all)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment