Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. ggplot(data = Weather_new, aes(x=DateAndTime, y= KP_sensor), na.rm=TRUE) +
  2. geom_point(color = "darkblue", alpha=0.2)+
  3. facet_wrap(.~Monthnames, ncol=4, strip.position = "top")+
  4. labs(title = "Irradiance distribution over the years")+ xlab('Years')+
  5. ylab(expression("Irradiance"~"["*W / m^2*"]"))+
  6. theme(plot.title = element_text(face = "bold"))+
  7. theme(plot.title = element_text(hjust = 0.5))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement