Displaying 1 result from an estimated 1 matches for "yal002".
Did you mean:
a002
2007 Jul 12
1
Interpreting a string as a variable in a column header
This must be a very simple question, but I can't find any information
on it elsewhere, sorry. When extracting information from a list using
column headers, how do I get R to interpret something as a variable
rather than a string? For example:
xx$"YAL002"
works, but this doesn't:
gene <- "YAL002"
xx$gene
neither do
xx$parse(gene)
xx$eval(gene)
xx$eval(parse(gene))
or a variety of other constructions I have tried.
Background: I have a table of information about yeast genes, and I
also have a list of yeast genes and their...