[OT] Help to creating a function to automate the plotProfile function in timecourse
1
0
Entering edit mode
@marcelo-luiz-de-laia-377
Last seen 9.6 years ago
Hi All, I would like to save the firts 500 (1 to 500th) graphs made by plotProfile function in timecourse package in a batch command. The function is: - for gene 1: plotProfile(out2,type="b",gnames=gnames,pch=c("A","B","C"),xlab="Tempo ",ranking=1 - for gene 2: plotProfile(out2,type="b",gnames=gnames,pch=c("A","B","C"),xlab="Tempo ",ranking=2 -for gene 3: plotProfile(out2,type="b",gnames=gnames,pch=c("A","B","C"),xlab="Tempo ",ranking=3 -for gene n: plotProfile(out2,type="b",gnames=gnames,pch=c("A","B","C"),xlab="Tempo ",ranking=n If it is possible, I would like a funtion to save it as .png For each one I know how to do, but for a lot of I don t have any idea. Thank you Marcelo
TimeCourse timecourse TimeCourse timecourse • 735 views
ADD COMMENT
0
Entering edit mode
Ido M. Tamir ▴ 320
@ido-m-tamir-1268
Last seen 9.6 years ago
On Tuesday 18 October 2005 03:22, Marcelo Luiz de Laia wrote: > Hi All, > > I would like to save the firts 500 (1 to 500th) graphs made by > plotProfile function in timecourse package in a batch command. > plotProf <- function( out, gnames, minrank, maxrank ){ for( rnk in minrank:maxrank ){ png(filename=paste("tc_", rnk, ".png", sep="") plotProfile( out, type="b", gnames, pch=c("A","B","C"),xlab="Tempo", ranking=rnk ) dev.off() } hth ido
ADD COMMENT

Login before adding your answer.

Traffic: 738 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6