search for: maplot

Displaying 11 results from an estimated 11 matches for "maplot".

Did you mean: matplot
2006 Apr 21
1
Titles in MAplots
Hi Does anyone know how to set the titles in MAplots to just show the CEL file name? So far I have; #define 'Array' as object containing CEL names Array <- col.names(Data) #open bmp and make a separate bmp for each MAplot bmp("C:/MAplot%03d.bmp") #remove the annotation and minimise margins par(ann=FALSE) par(mar=c(1,1,1,1)) #M...
2011 Feb 07
1
color2d.maplot error
Dear all I am using color2D.maplot to map some matrixes to plot. everything works fine. It seems that when my matrix contains only the same value color2D.maplot returns the following error: color2D.matplot(estimatedsr,redrange=c(0,1),greenrange=c(0,.5),bluerange=c(0,.5),xlab="x",ylab="y",main=sprintf('Estim...
2011 Feb 10
1
color2D.maplot fixed color range
...color2D.matplot(estimatedsr,xlab="x",ylab="y",main=sprintf('Estimated %d',i),show.legend=FALSE,show.values=FALSE,border=NA,cellcolors=colcolor) all the plots get the same cell color in every cell which too far from correct. So do you know if it is possible with color2D.maplot or with other plotting technique to plot many diagrammes that use the same coloring scheme (values dynamically predetermined are matched to specific colors). I would like to thank you in advance for your help Best REgards Alex
2010 Feb 17
1
Procedure not working for actual data
...Like i said my sample data works fine but my actual implementation does not. Any suggestions? I know this is not easy to answer without seeing the problem but this is the best i can do without sending you all of my data. Cheers, JR #Sample data Bldgid<-c(1000,1000,1001,1002,1003,1003) Maplot<-c(20000,20001,30000,30001,40000,40001) Area<-c(40,170,50,100,100,4.9) #Construct Sample dataframe MultiLotBldgs..<-data.frame(Bldgid,Maplot,Area) #Get Building Areas MultiLotBldgArea.X <- unlist(tapply(MultiLotBldgs..$Area, MultiLotBldgs..$Bldgid, functio...
2010 Feb 19
1
Subtracting one based on an If
For the following: Bldgid<-c(1000,1000,1000,1001,1002,1003,1003,1003) Maplot<-c(20000,20001,20002,30000,30001,40000,40001,40002) Area<-c(40,170,160,50,100,100,90,110) #Construct Sample dataframe MultiLotBldgs..<-data.frame(Bldgid,Maplot,Area) CondoLots_ <- tapply(MultiLotBldgs..$Maplot, MultiLotBldgs..$Bldgid, length) CondoLots_ Returns: 1000 1001 1002 10...
2011 Jan 23
1
Plotting multiple xts/zoo time series on a single plot.
So I've got a 154 column wide xts time series object and I want to plot the 154 series on a single plot and have the added benefit of the time series dates on the x axis. Any suggestions for plotting functions, maplot works but does not give dates on the axis and I can't seem to get plot to give me more than one series. Nick [[alternative HTML version deleted]]
2012 Oct 07
1
BioConductor package: 'oligo'
...eater, so cannot use the list matrix generated in 'affyio' version 1.27 on R 2.6 cause is does not seem compatible with 'oligo' version 1.22 on R 2.6. I am also using the recently updated BioC version 2.11. In oligo using R v. 2.15, I am able to view the .CEL images, make boxplots, MAplots of the data, but cannot proceed beyond this point (as indicated above). In summary, is this a bug in the 'oligo' package?? Any assistance is greatly appreciated. If you have questions or need additional information, please feel free to contact me. Best Regards, Franklin [[...
2004 Mar 16
1
X11 and utils
Hello, I'm a french student working on a project concerning cDNA microarray. I've chosen to work with R and use the marrayClasses, marrayInput (...) packages. First, when I enter "library(marrayInput)", R warns me about a missing package called "utils" but I can't find it anywhere. Normally this package is installed when you install "base" package.
2001 Mar 27
4
how superpose two graphics ?
hello, I'd like tu superpose two graphics, I mean, be able to plot two functions on the same graphics .. Can someone help me ? Alvine Bissery -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body",
2009 Nov 20
2
Problem at adding lines on a graphics with lines() function
Hello, I am trying to plot a graphic with many lines with the following command: plot(datas[1:n,1],datas[1:n,2],type="l",main="SP500 Prices and Moving Averages",xlab="Date",ylab="Prices",col="black") lines(datas[1:n,1],datas[1:n,3],type="l",col="green",lty="solid") But I just see the first curve. I have tried it on
2007 Mar 07
2
Multi-line plots with matrices in R
Hello all, I'm a new user of R, experienced with Octave/MATLAB and therefore struggling a bit with the new syntax. One of the easy things in Octave or MATLAB is to plot multiple lines or sets of points by using a matrix where either the columns or the rows contain the y-values to be plotted. Both packages automatically give each line/points their own unique colour, character etc. I'm