camroach87 / pod-energy-comp

Presumed Open Data Energy Challenge
MIT License
6 stars 2 forks source link

Check for PV/demand outliers #20

Closed camroach87 closed 3 years ago

camroach87 commented 3 years ago

Just do another quick check to see if there are any obvious outliers. E.g. zero demand all day.

camroach87 commented 3 years ago
pv.data %>% mutate(date = date(datetime), period = hour(datetime)*2 + minute(datetime)/30 + 1) %>% ggplot(aes(x = period, y = pv_power_mw, group = date)) + geom_line()
camroach87 commented 3 years ago

I really should filter out those two demand outliers. Doesn't make any sense that including them would improve model.

camroach87 commented 3 years ago

Closed by 02503170469f3a65725b2f7efffb5e0e3ec5b707