New: ggplotAll contenthive-129948krhive-196917steemzzanhive-183959hive-180932hive-166405hive-185836photographyuncommonlabhive-183397hive-101145hive-150122hive-188619hive-144064bitcoinkrsuccesshive-145157lifehive-184714hive-109690hive-193637hive-103599hive-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)…