search for: 200084_at

Displaying 2 results from an estimated 2 matches for "200084_at".

Did you mean: 100004_at
2008 Aug 05
1
Extracting Names of Named List (Index of Hash)
Hi, How can I extract the names of the following list: > str(y) List of 815 $ 200052_s_at : num [1:5] -1067 -1064 -1063 -1062 -1059 $ 200071_at : num [1:5] -960 -954 -954 -949 -975 $ 200084_at : num [1:5] -1136 -1133 -1128 -1129 -1126 ... Thus in the end I want to get the array: [1] "200052_s_at" "200071_at" "200084_at" .... - Gundala Viswanath Jakarta - Indonesia
2008 Aug 05
2
Iterating Named List
Hi all, I have the following named list: > print(y) $`200052_s_at` [1] -1066.975 -1063.893 -1062.815 -1062.121 -1059.004 $`200071_at` [1] -959.823 -953.980 -953.886 -948.781 -974.890 $`200084_at` [1] -1135.804 -1132.863 -1128.197 -1128.633 -1125.890 What I want to do is to iterate this name list and process its members. To do that I attempt the following code (but failed): __BEGIN__ ny <- names(y) for (i in ny) { val <- paste("`",i,"`",sep="")...