stacking x and y labels when graphing large amounts of data-R

时间:2016-07-11 20:00:39

标签: r ggplot2

I am trying to graph a dataframe which is 1100x2 large. Because of the large amount of data, I find that ggplot stacks the labels. Is there a way to avoid this or just delete the labels altogether? Here is my graph:

My graph

and here is my code:

ggplot(data=`Rsa19766.01-s00-m01-1`, 
       aes(x=`Rsa19766.01-s00-m01-1`$Wavelength,
           y=`Rsa19766.01-s00-m01-1`$Reflection, 
           group=1,shape=".")) + 
  geom_line() + 
  ggtitle("Cary Ref")

0 个答案:

没有答案