search for: xxlab

Displaying 6 results from an estimated 6 matches for "xxlab".

Did you mean: xlab
2010 May 31
3
two questions about PLOT
...low .thanks .:) outflnm<-paste(Outdic,"meansd.jpg",sep="/") jpeg(file=outflnm, bg="transparent") legend<-c("average error","stand quare error") lgcol<-c("black","red1") par(las=1) yylab<-c("forecast error") xxlab<-c("typhoon class") llty<-c(1,3) llwd<-c(4,4) #par(bg='yellow') plot(avegrp,type='l',lty=1,col='black',lwd=4,xlab=xxlab,ylab=yylab) par(new=T) plot(sdgrp,type='l',lty=3,col='red1',xlab=xxlab,ylab=yylab,lwd=4) #axis(2, col = "gold&quo...
2012 Jul 10
2
how can I show the xlab and ylab information while using layout
hi R-users: I want to draw three plot into one figure by layout and the script has been shown below. But I find R does not show the xlab and ylab information completely as shown the figure attached. How can I midify the script.? thank you . xxlab<-paste(cpmd," (",ro,"%)",sep=" ") yylab<-paste(rfmd," (",co,"%)",sep=" ") par(mar=c(3,3,1,1)) #layout(matrix(c(2,0,1,3),2,2,byrow=TRUE),widths=lcm(30), heights=lcm(25),TRUE) layout(matrix(c(2,0,1,3),2,2,byrow=TRUE),c(5,1),c(1,5),TRUE...
2012 Mar 08
6
how to modify the tickment of x-axis
hi I plot a series of observation data every minutes in a day as the attachment below plot(wnd,type='l',lty=1,col='red',lwd=1,xlab=xxlab,ylab=yylab,ylim=YY) In the figure, the x-axis tickment is the number of data How can I change it fore example 1h 2h 3h 4h and so on ? -- TANG Jie Email: totangjie at gmail.com Tel: 0086-2154896104 Shanghai Typhoon Institute,China
2012 Jun 29
3
how to add the sample number in the hist figure
hi,R-users: Now I plot some data with the name(aveobsdata) in column , How can I add the some number(e,g. the sample number) in each of the column? plot(aveobsdata,type='h',lwd=line_width,col=line_col,main=titleinfo,xlab=xxlab,ylab=yylab,xaxt = "n") axis(1, at = 1:nums, label = name) --
2012 Jul 10
0
R-help Digest, Vol 113, Issue 13
...uot; > > hi R-users: > I want to draw three plot into one figure by layout and the script has > been shown below. > But I find R does not show the xlab and ylab information completely as > shown the figure attached. > How can I midify the script.? thank you . > > xxlab<-paste(cpmd," (",ro,"%)",sep=" ") > yylab<-paste(rfmd," (",co,"%)",sep=" ") > par(mar=c(3,3,1,1)) > #layout(matrix(c(2,0,1,3),2,2,byrow=TRUE),widths=lcm(30), > heights=lcm(25),TRUE) > layout(matrix(c(2,0,1,3),2,2,byrow...
2010 Feb 13
4
Labels on a pyramide
...ng like this ############################################ xy.pop<-dados$masfr xx.pop<-dados$femfr #agelabels<-dados$femlab xycol<-color.gradient(c(0,0,0.5,1),c(0,0,0.5,1),c(1,1,0.5,1),11) xxcol<-color.gradient(c(1,1,0.5,1),c(0.5,0.5,0.5,1),c(0.5,0.5,0.5,1),11) xylab<-dados$maslab xxlab<-dados$femlab agelabels<-xylab png("piramide9808.png") par(mar=pyramid.plot(xy.pop,xx.pop,labels=agelabels,top.labels=c("Masculino","","Feminino"), main="Primeiras 10 cancros mais frequentes por sexo...",xycol=xycol,xxcol=xxcol,gap=0,...