I have a list of companies that includes three variables: year founded, market capitalization and company name (actually, ticker symbol).
I want to plot them by year founded (X axis) and market capitalization (Y axis) with fill determined by vendor name.
Doing this:
qplot(factor(Founded), Market.Cap, data = mcap, geom = "bar", fill = Vendor)
Gets me that, but the X-axis is illegible (see below). I've tried to feed scale_x_discrete() values (1900 - 2012, etc) but had no luck. How do I tell ggplot2 not to display the actual values but instead a spectrum of my choosing?
And as a side note, if you can remind me how to avoid the scientific notation on the Y-axis, great.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…