Naji wrote:
Hi all
As a new user of R, I need some help for a contour plot.. - How can I change x,y labels format ie .01 -> 1% - Is is possible to change Axis & Grph fonts to Times 11? - How can I change the xaxp? I gave it several trials without success..
Par(xaxp(0,1,4) Contour(x,y,z,label=c("2%","4%","6%","8%","10%","12%","14%","16%","18%")) Title("Isoquant Market share", xlab="Availability",ylab="Share of Prefeences")
par(xaxp = c(0,1,4)) contour(x, y, z, label = paste(seq(2, 18, 2), "\%", sep = "")) title("Isoquant Market share", xlab="Availability", ylab="Share of Prefeences")
Uwe Ligges
Thanks for help
-> Is there any tutorial for R graphs?
Best regards Naji
______________________________________________ [EMAIL PROTECTED] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
______________________________________________ [EMAIL PROTECTED] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
