#' This function compares estimated monthly yield to actual yield for portal SE and SMA.
#' @param se_performance SolarEdge Data.
#' @param sma_performance SunnyPortal Data
#' @param estimates Reference for .
#' @param status Reference list on site status.
#' @return Monthly production above estimates data.frame as an object, and also written to monthly_positive_deviation.csv.
#' @export
#' @examples
#' monthly_positive_deviation(sma_performance,se_performance,estimates,status)
monthly_positive_deviation <- function(sma_performance,se_performance,estimates,status) {
se_filter <- left_join(se_performance %>% select(PORTAL.NAME,MONTH),
estimates %>% select(PORTAL.NAME,Email,
Installation.Date,JOB.NAME,MonitorCode,AUG,PvEstMonthlyProd), by = "PORTAL.NAME")
sma_filter <- left_join(sma_performanc %>% select(PORTAL.NAME,MONTH),
estimates %>% select(PORTAL.NAME,Email,
Installation.Date,JOB.NAME,MonitorCode,AUG,PvEstMonthlyProd), by = "PORTAL.NAME")
se_sma_bind <- rbind(se_filter, sma_filter)
se_sma_deviation <- se_sma_bind %>%
transform(PERFORMANCE = as.numeric(MONTH)/as.numeric(AUG))%>%
left_join(status %>% select(PORTAL.NAME,STATUS, CATEGORY), by = "PORTAL.NAME")
positive <- filter(se_sma_deviation, PERFORMANCE > 0.85)
distinct(positive, PORTAL.NAME, .keep_all= TRUE)
return(positive)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.