knitr::opts_chunk$set(echo = TRUE)
Make a list to represent 100 year on a 10 acre plot of land
time<- data.frame(year = c(1:100)) land_area<- 10 soil_erosion_data<- data.frame(cbind(land_area, time))
soil_erosion_data$erosion<- soil_erosion(area = land_area, time = time)
Run data into the package
use_data(soil_erosion_data, pkg = SoilCarbon)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.