Displaying 2 results from an estimated 2 matches for "plot_test".
Did you mean:
plop_test
2008 Nov 14
2
the number of the arguments of function is not sure
I want to write a function to plot a picture for each inputting file like
the following example.
plot_test <- function(f1,f2)
{
}
However,
--
Jia-Ming
============================
$BD%2HLC(B Jia-Ming Chang
PhD Student
Comparative Bioinformatics Group
Bioinformatics and Genomics Programme
Centre de Regulacio Genomica (CRG)
Dr. Aiguader, 88
08003 Barcelona
Spain
E-Mail: chang.jiaming@crg.es
ch...
2011 Dec 02
0
Save Venn-diagram (Vennerable) together with table and plot in single pdf page
...Varnames<-c("A","B","C")
x <- Venn(SetNames = Varnames,Weight =
c(`100`=2,`010`=6,`001`=10,`110`=1, `011`=0.2, `101`=0.5,`111`=1))
cx<-compute.Venn(x,doWeights = TRUE)
tabletext<-paste("Variable: ",letters[1:8],sep="")
pdf("path/plot_test.pdf", fillOddEven=TRUE,paper="a4",
onefile=TRUE,width=7,height=10)
layout(matrix(c(1,2,2,1,2,2,3,3,3), 3, 3, byrow = TRUE),heights=c(1,1,2))
par(mar=c(6,2,2,4))
textplot(tabletext,valign="top",halign="left",cex=2)
plot(rnorm(100),main="Random 1")
plot(r...