Testing R Markdown

Header 3

Write some sample text here. Bold text

  • apple
  • banana
  • list one
  • list two
  • new
  • old

this is my italic text

but wait there’s more

  1. First item in ordered list
  2. Second item in ordered list

H1

subheader

x <- 4*3

Introduction

bg_chem <- read.csv("../data/BGchem2008data.csv")

Analysis

calculate summary statistics

nitrate <- mean(bg_chem$NO3)
nitrite <- mean(bg_chem$NO2)
amm <- mean(bg_chem$NH4)
phos <- mean(bg_chem$P)

calculate mean Redfield ratio

ratio <- (nitrate + nitrite + amm)/phos

Plots

plot Redfield ratio


TIL…

text files are good for git and github powerpoint not so much, binaries not so much you can create a project in RStudio, turn on Git for version control, and upload it to Github and then create a repository with it!