Displaying 2 results from an estimated 2 matches for "tasso".
Did you mean:
lasso
2002 Dec 10
1
question about R - barplot function
...plot"
I have a problem in the graphical output when I run, for example, this
program (and the others like this):
postscript("copnido.ps",horizontal=F,family="Helvetica",pointsize=15.5,width=10.5,height=9)
par(mar=c(5,6,4,4))
dati <- read.table("infanzia.tab")
tasso <- cbind(dati$tasso)
barplot(tasso,beside = TRUE, space = c(0.6),col = c("blue"), axes = FALSE,
ylim = c(25,40),horiz=FALSE)
axis(1,c(1.1,2.7,4.3,5.9,7.5),c("99-00","00-01", "01-02", "02-03",
"03-04"),tck = 0,las = 1)
axis(2,las =2)
b...
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(n...