Displaying 2 results from an estimated 2 matches for "plotaffyrnadeg".
2007 Feb 26
1
PlotAffyRNAdeg on Estrogen Data
...xample
data plot, but seem to get an error. I've tried defining an ylim value,
ylim=c(0,30) , but it doesn't seem to work either.
My code is as follows:
> RNAdeg<-AffyRNAdeg(Data)
> png(DegLoc, width=720, height=720)
> par(ann=FALSE)
> par(mar=c(3,3,0.1,0.1))
> plotAffyRNAdeg(RNAdeg,col=cols, cex.axis=1.2)
Error in plot.window(xlim, ylim, log, asp, ...) :
need finite 'ylim' values
> dev.off()
null device
1
Thanks in advance
Tony
[[alternative HTML version deleted]]
2005 Nov 16
2
X11 error in png
Hi all,
When I ran a script containing the following codes:
png(paste(savepath,"a_rnaplot.png",sep = ""),width = fwidth, height = fheight,pointsize = fpointsize);
data_deg <- AffyRNAdeg(data_cel)
plotAffyRNAdeg(data_deg,col=cols,lty=1,lwd = "2")
#a <- par("fin")
legend("bottomright",sampleNames(data_cel),col=cols,lty=1)
RNAdegSlope = cbind("Sample Names" = data_deg$sample.names, "RNA Deg Slope" = data_deg$slope)
write.csv(RNAdegSlope, fi...