Rを用いて簡単な散布図を描いてみる

Rを用いて簡単な散布図を描いてみます。
生物ネタとして、縦軸横軸を各々仮想の遺伝子gene1, gene2の発現値としています。




R
setwd("/home/tetsuo/2011/1101")
getwd()

gene1 <- c(1,5,8,9,16,25)
gene2  <- c(6,8,5,10,60,87)

plot(gene1,gene2)

png("110122_gene1-gene2_relation.png")
plot(gene1,gene2)
dev.off()

q()

でけた!