Displaying 2 results from an estimated 2 matches for "hgu95av2symbol".
2004 Mar 27
2
cbind question
...aracter lists with identical length. First tried combine the lists together with cbind, then convert the lists to matrix, and tried again. Both faied. Any fix to merge the two lists/matrices?
ll<- multiget(ftID, hgu95av2LOCUSID)
> class(ll)
[1] "list"
> sym <- multiget(ftID, hgu95av2SYMBOL)
> class(sym)
[1] "list"
> cbind(sym, ll)
Error in cbind(...) : cannot create a matrix from these types
> sym <- as.matrix(multiget(ftID, hgu95av2SYMBOL))
> ll<- as.matrix(multiget(ftID, hgu95av2LOCUSID))
> dim(sym)
[1] 508 1
> dim(ll)
[1] 508 1
> class(sym)...
2008 Jun 16
2
Creating a Hash from Data.Frame
Hi,
I have the following data frame:
> print(mydatframe)
__DATAFRAME__
V1 V2 V3
1 1007_s_at DDR1 discoidin domain receptor tyrosine kinase 1
2 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
3 117_at HSPA6 heat shock 70kDa protein 6 (HSP70B')
__END__
Is there a way to create a hash with
V2 as Key and V3 as its value?
- Gundala Viswanath
Jakarta - Indonesia