Displaying 2 results from an estimated 2 matches for "yal038w".
2008 Sep 09
1
write dataframes
Hi,
After manipulate my data I have ended up with 5 different data frames
with different number of observations but the same
number of variables (columns)
An example, if I write str(object1), I see this,
data.frame': 47 obs. of 3 variables:
$ ORF : Factor w/ 245 levels "YAL038W","YAL054C",..: 10 19 38 39 44
45 50 51 59 60 ...
$ mRNA : num 0.891 1.148 1.202 1.479 1.445 ...
$ Protein: num 1.230 1.288 1.175 0.724 0.851 ..
str(object2)
'data.frame': 21 obs. of 3 variables:
$ ORF : Factor w/ 245 levels "YAL038W","YAL054C&quo...
2008 Feb 12
3
filter data from data frame
...ing information,
ORF spectra
1 YAL001C 2
2 YAL005C 21
3 YAL007C 2
4 YAL012W 8
5 YAL016W 24
6 YAL019W 3
7 YAL020C 2
8 YAL021C 7
9 YAL022C 3
10 YAL023C 6
11 YAL026C 2
12 YAL029C 1
13 YAL031C 1
14 YAL035W 48
15 YAL038W 173
16 YAL041W 4
17 YAL042W 4
18 YAL048C 1
19 YAL049C 1
20 YAL051W 1
In the other hand I have this object X with character elements as following
"YAL026C"
"YAL041W"
"YAL048C"
"YAL007C"
"YAL012W"
"YAL016W"
an...