New: ggplotAll contenthive-129948hive-196917krhive-183959steemzzanhive-180932photographyhive-166405hive-144064uncommonlabhive-185836bitcoinhive-183397hive-188619krsuccesshive-150122hive-124908hive-101145lifehive-139150hive-109690hive-145157hive-103599hive-184714TrendingNewHotLikersbsilva (25)in ggplot • 6 years agoMultiplot with ggplotggplot is a wonderful package to make beautiful plots in R. For those who still just use standard R plots I really suggest you give a look at ggplot. The ggplot syntax may look a bit strange in the…south-man (32)in ggplot • 7 years agoDrawing line and point graphs in ggplotlibrary(ggplot2) ggplot(pressure, aes(x=temperature, y=pressure)) + geom_line() + geom_point() + geom_line(mapping = aes(y=pressure/2, colour="red")) + geom_point(mapping = aes(y=pressure/2)…