New: ggplotAll contenthive-129948hive-196917krhive-150122steemhive-180932hive-166405zzanphotographyhive-183959hive-185836hive-188619hive-144064hive-183397hive-101145uncommonlabhive-145157hive-103599hive-184714hive-193637hive-180106hive-138689hive-150943bitcoinhive-179660TrendingNewHotLikersbsilva (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)…