New: ggplotAll contenthive-129948hive-196917krhive-150122zzanhive-180932steemhive-185836hive-183959photographyhive-183397hive-166405hive-188619hive-144064hive-101145uncommonlabhive-139150hive-109690hive-103599hive-145157photohive-180301hive-193637hive-170554hive-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)…