knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE)
r params$site_name
Solar Resource Assessmentr Sys.Date()
count_flags(params$sms_flagged) %>% plot_flag_count_bar_chart()
params$mcp$daily_results_table %>% knitr::kable()
params$mcp$megaframe %>% filter(datetime >= min(filter(params$mcp$megaframe, model == 'sms')$datetime), datetime <= max(filter(params$mcp$megaframe, model == 'sms')$datetime), ghi > 0) %>% plot_monthly_ghi(title = '') + facet_wrap(~ year, ncol = 1) + theme(legend.position="bottom")
params$mcp$megaframe %>% select_longterm_models() %>% summarise_annual_total_ghi() %>% add_normalized_ghi() %>% plot_annual_model_values('ghi', 'Annualized Total GHI')
timestep <- 'daily' value <- 'fitted.values' grab_model_list(params$mcp$model_fits, timestep, 'ghi', value) %>% plot_model_comparison(value, title = paste(timestep, 'ghi', value)) grab_model_list(params$mcp$model_fits, timestep, 'temp', value) %>% plot_model_comparison(value, title = paste(timestep, 'temp', value))
campaign_df <- compile_monthly_ghi_results_of_campaign(params$mcp$megaframe) plot_campaign_ghi_longterm_adjustments(campaign_df) plot_campaign_ghi_uncertainty(campaign_df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.