各遺伝子名が繰り返され、2 つの条件の値が含まれている data.frame があります。
df <- data.frame(gene=c("A","A","B","B","C","C"),
condition=c("control","treatment","control","treatment","control","treatment"),
count=c(10, 2, 5, 8, 5, 1),
sd=c(1, 0.2, 0.1, 2, 0.8, 0.1))
gene condition count sd
1 A control 10 1.0
2 A treatment 2 0.2
3 B control 5 0.1
4 B treatment 8 2.0
5 C control 5 0.8
6 C treatment 1 0.1
治療後に「カウント」の増減があるかどうかを計算し、そのようにマークしたり、サブセット化したりしたいと考えています。つまり(疑似コード):
for each unique(gene) do
if df[geneRow1,3]-df[geneRow2,3] > 0 then gene is "up"
else gene is "down"
最終的には次のようになります (最後の列はオプションです)。
up-regulated
gene condition count sd regulation
B control 5 0.1 up
B treatment 8 2.0 up
down-regulated
gene condition count sd regulation
A control 10 1.0 down
A treatment 2 0.2 down
C control 5 0.8 down
C treatment 1 0.1 down
私は ddply で遊ぶなど、これで頭を悩ませてきましたが、解決策を見つけることができませんでした - 不運な生物学者をお願いします.
乾杯。