Displaying 3 results from an estimated 3 matches for "phylum".
2013 Jan 31
2
rbind Missing Something: Need New Eyes
I don't see what's missing in my statements to add rows to a data frame
and someone else will probably see what needs to be added to the statements.
The data frame has this structure (without any data):
$ PHYLUM : chr
$ SUBPHYLUM : chr
$ SUPERCLASS : chr
$ CLASS : chr
$ SUBCLASS : chr
$ INFRACLASS : chr
$ SUPERORDER : chr
$ ORDER : chr
$ SUBORDER : chr
$ INFRAORDER : chr
$ SUPERFAMILY: chr
$ FAMILY : chr
$ SUBFAMILY : chr
$ TRIBE : chr
$ SUBTRIBE :...
2010 Oct 28
1
Heatmap construction problems
I am very new to R and don't have any computer program experience
whatsoever. I am trying to generate a heatmap of the following data:
Phylum,AI,AJT,BY,GA,Grt,Sm
Acidobacteria,0.5,0.7,2.7,0.1,2.6,1.0
Actinobacteria,33.7,65.1,9.7,2.0,3.9,2.1
Bacteroidetes,9.7,5.6,0.7,13.2,41.1,21.6
CCM11b,0.0,0.0,0.0,0.0,0.0,0.1
Chlamydiae,0.1,0.1,0.0,0.0,1.0,0.2
Chlorobi,0.0,0.0,0.0,0.0,0.7,1.0
Chloroflexi,0.1,0.2,0.6,0.2,0.8,0.6
Cyanobacteria,18...
2006 Jul 15
2
Render -> ActionController -> Render -> ...
Hi Guys,
ActiveRecord is great for being able to drill down through many tables.
I often locate the very "top" record, and have a render :action =>
"show" display that top record.
Often I want to drill down like:
@kingdom.phylums.classes.orders.each do |order|
render :partial => "order/show"
end
But, depending on the user who is logged in, they see a different set of
"order", or a different set of "phylums".
In other words, as I drill down, I want to filter what the result set
(has_m...