Displaying 1 result from an estimated 1 matches for "tfl1".
Did you mean:
  fl1
  
2011 Feb 20
3
Partial italic in graph titles when looping
...ponding title is formatted properly. The titles will be a 
combination of a gene name and numerical position within the gene. The gene name 
should be italic-bold, whereas the gene position should be just bold.
Consider the following:
x <- read.table(textConnection("gene position
FLC 3312
TFL1 687
GA1 1127"), header = TRUE, as.is = TRUE)
closeAllConnections()
Now this, below, is essentially how I am automating the graph-making (imagine 
these graphs contain some sort of real data):
par(mfrow = c(3,1))
for (i in 1:nrow(x)){
    plot(z <- sort(rnorm(47)), type = "s", ma...