Displaying 1 result from an estimated 1 matches for "tassov".
2011 Dec 16
1
problem with tick graph
...q from -100 to 300 (with
-100 and 300 printed on my graph)
Someone Knows how to get it???
The code and data are:
grafico<-{
pdf(file=file, paper="special",width=30, height=20)
par(bg="white",font=3,font.axis=3,las=1,cex.axis=2.2, mar=c(8,6,8,8)+8)
barplot(Imp$TassoV, width=10,space=c(0,0.1),legend.text = FALSE,beside=TRUE,
border="grey40", main="",col="midnightblue",cex.main=2.4,
axes = FALSE, axisnames =FALSE)
lab=as.character(pretty(Imp$TassoV))
axis(side=4,at=pretty(Imp$TassoV),labels=lab,cex.axis=2.4)
par(ne...