Hi,

I would like to rotate the x axis tick labels by 45 degrees.   Using the code 
below, could someone please provide an example?   Many Thanks In Advance, Alex

library("scatterplot3d")
mydf=data.frame(rate=seq(158, 314)
                ,age=seq(1, 157)
                ,market_date=seq(as.Date("2000/1/1"), as.Date("2003/1/1"), 
by="7 days"))

mydf$market_date=as.Date(mydf$market_date, format="%Y-%m-%d")

scatterplot3d(mydf$market_date
              ,mydf$rate
              ,mydf$age
              ,x.ticklabs = seq(as.Date("2000/1/1"), as.Date("2003/1/1"), 
by="330 days"))


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to