Description Usage Format See Also Examples
Average crop yield for all watersheds from 2007-2016
1 |
A data.frame with 4 variables: year, watershed,
crop, and dryyield_buac (bushels per acre)
1 2 3 4 5 | # Convert from bushels per acre to Megagrams per hectare
library(dplyr)
legacy_yield <- legacy_yield %>%
left_join(legacy_yield_conversion, by="crop") %>%
mutate(yield_Mgha = dryyield_buac * Mgha_per_buac)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.