I'm trying to plot multiple columns on one plot, using the following code:
df.m <- melt(stkPres, "date")
ggplot(df.m, aes(date, value)) +
geom_line() +
facet_wrap(~variable, scales = "free")
Which returns a graph like this:
How can I make the plots sized more appropriately?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…