powered by
data(genomes)
organism
group
size
CG
habitat
temp.group
temperature
data(genomes) library(ggplot2) # is this relation linear ? qplot(size,GC, data=genomes) + theme_bw() # or linear in log scales? qplot(size,GC, data=genomes, log="xy") + theme_bw()
Run the code above in your browser using DataLab