nutrient_tserie | R Documentation |
Creates a time series plot showing basin model results
nutrient_tserie(green_file, basin_name, plot.type, file_path = NULL)
green_file |
data frame. Nutrient Load by source apportionment of nutrient for each year and catchments. |
basin_name |
character. The title of the plot. |
plot.type |
character. Alternative of the plot: output load (t) by source; gr1: Basin average by Shreve (t/y/km2); gr2: Outlet total (kt/y). |
file_path |
character. The path to save the csv. |
No return value, called for the side effect of drawing a plot
# the data of the TN scenario
data(catch_data_TN)
data(annual_data_TN)
data(sh_file)
# the parameter to assess the basin model
alpha_p <- 35.09
alpha_l <- 0.02
sd_coef <- 0.2
# years in which the model should be executed
loc_years <- 1990:2018
# Computing the source apportionment
basin_sa <- green_shares(catch_data_TN, annual_data_TN, alpha_p, alpha_l,
sd_coef, loc_years)
# The title of the plot
plotTitle <- "Time series Load Output for the Lay Basin"
# Output Load Basin average time series (lines)
nutrient_tserie(basin_sa, basin_name = plotTitle, plot.type = "gr1")
# Total Load in the Basin Outlet time series (lines)
nutrient_tserie(basin_sa, basin_name = plotTitle, plot.type = "gr2")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.