search for: end0

Displaying 3 results from an estimated 3 matches for "end0".

Did you mean: end
2005 May 12
2
Batch mode problem: figure margins too large (code corrected for word wrap)
...,c(3,9)] longb[,1]<-as.Date(longb[,1],format="%Y%m%d") #to transform to date format par(mar=c(2.5, 3.5, 2, 4.5)) #need this par for mtext plot(longb,type="l",las=1,xlab="",ylab="",bty="l",cex.axis=0.9) end<-(longb)[nrow(ordered),] #mtext text end0<-(longb)[nrow(ordered)-1,] #mtext text now<- paste(' Last:',end[,2],"\n",'Prev:',end0[,2]) #mtext text mtext(now,side=4, las=2,adj=0,padj=0.5,cex=0.5) #mtext text } dev.print(pdf, file="c:/CFTC.pdf",height=10,width=8,paper="letter") #Code end...
2005 May 12
0
Batch mode problem: figure margins too large
...longb[,1]<-as.Date(longb[,1],format="%Y%m%d") #to transform to date format par(mar=c(2.5, 3.5, 2, 4.5)) #need this par for mtext plot(longb,type="l",las=1,xlab="",ylab="",bty="l",cex.axis=0.9) end<-(longb)[nrow(ordered),] #mtext text end0<-(longb)[nrow(ordered)-1,] #mtext text now<- paste(' Last:',end[,2],"\n",'Prev:',end0[,2]) #mtext text mtext(now,side=4, las=2,adj=0,padj=0.5,cex=0.5) #mtext text } dev.print(pdf, file="c:/CFTC.pdf",height=10,width=8,paper="letter") As...
2005 May 12
0
RE: Batch mode problem: figure margins too large (aligned R code to the left)
...t;-as.Date(longb[,1],format="%Y%m%d") #to transform to date format > par(mar=c(2.5, 3.5, 2, 4.5)) #need this par for mtext > plot(longb,type="l",las=1,xlab="",ylab="",bty="l",cex.axis=0.9) > end<-(longb)[nrow(ordered),] #mtext text > end0<-(longb)[nrow(ordered)-1,] #mtext text > now<- paste(' Last:',end[,2],"\n",'Prev:',end0[,2]) #mtext text > mtext(now,side=4, las=2,adj=0,padj=0.5,cex=0.5) #mtext text > } > dev.print(pdf, file="c:/CFTC.pdf",height=10,width=8,paper="let...