Description Usage Arguments Value Examples
join temp and precip dataframes
1 | join_temp_ppt(ppt_df, temp_df)
|
ppt_df |
dataframe with precip (must have "date" column) |
temp_df |
dataframe with temperature (must have "date" column) |
dataframe joined on "date"
1 2 3 4 5 | params <- monthly_ppt_params(wx_data)
df1 <- markov_chain(params, start_date = "1980-01-01", end_date = "1980-12-31")
ppt_df <- generate_events(df1, params)
wk_list <- temp_wk_list(wx_data)
temp_df <- generate_temp(wk_list, start_date = "1980-01-01", end_date = "1980-12-31")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.