June 2017
Beginner to intermediate
576 pages
15h 22m
English
If you like using ggplot, a similar set of graphs can be rendered using facets:
require("ggplot2").df <- data.frame(x = x3$Year.1, y = x3$Not.Covered.Pct, z = x3$cat, s = x3$cat).df <- .df[order(.df$x), ].plot <- ggplot(data = .df, aes(x = x, y = y, colour = z, shape = z))+ geom_point()+ geom_line(size = 1) + scale_shape_manual(values = seq(0, 15))+ scale_y_continuous(expand = c(0.01, 0)) + facet_wrap(~s) + xlab("Year.1") + ylab("Not.Covered.Pct") + labs(colour = "cat", shape = "cat") + theme(panel.margin = unit(0.3, "lines"), legend.position = "none") print(.plot)
