New: ggplotAll contenthive-129948hive-196917krhive-185836steemzzanhive-183959hive-180932photographyhive-150122hive-166405hive-144064hive-188619hive-101145hive-145157uncommonlabhive-184714hive-183397hive-193186bitcoinhive-103599krsuccesshive-193637hive-180301hive-181136TrendingNewHotLikersbsilva (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)…