Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=(date_format="%B")) +
  2.  
  3. scale_x_date(major="months", minor="weeks", format="%B") +
  4.  
  5. Error in scale_labels.continuous(scale) :
  6. Breaks and labels are different lengths
  7.  
  8. Error in continuous_scale(aesthetics, "date", identity, breaks = breaks, :
  9. unused argument(s) (major = "months", minor = "weeks", format = "%B")
  10.  
  11. scale_x_date(breaks = "1 month", minor_breaks = "1 week") +
  12.  
  13. scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%B")) +
  14.  
  15. Error in structure(list(call = match.call(), aesthetics = aesthetics, :
  16. could not find function "date_format"
  17.  
  18. scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%B")) +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement