合計 36 列。
データサンプルコード:
df <-
structure(
list(
Bacteroidaceae = c(
0,
0.10944999,
0.104713314,
0.125727668,
0.124136247,
0.005155911,
0.005072778,
0.010231826,
0.010188139
),
Christensenellaceae = c(
0,
0.009910731,
0.010131195,
0.009679938,
0.01147601,
0.010484508,
0.008641566,
0.010017172,
0.010741488
),
treatment = c(
"Original Sample1",
"Original Sample2",
"Original Sample3",
"Original Sample4",
"treatment1_1",
"treatment1_2",
"treatment1_3",
"treatment1_4"
)
),
class = "data.frame",
row.names = c(NA,-8L)
)
私がしたいことは、データ内のすべての列のプロットを作成することです。そのため、すべての列に 2 つのプロットがあります。1 つは治療 1 用で、もう 1 つは元のサンプル用で、合計 72 プロットです。
例えば:
このコードを使用して試した元のサンプルタイプと同じです:
df %>%
tidyr::pivot_longer(!treatment, names_to = "taxa", values_to = "value") %>%
dplyr::filter(str_detect(treatment, "Treatment1")) %>%
for (i in columns(df)){
)
ggplot(aes(x = treatment, y = value, color = taxa),group=treatment) +
geom_point() +
stat_summary(fun.y = mean,
geom = "line", width = 0.5)+geom_jitter(widh=0.25)
theme_bw()}}
しかし、うまくいきませんでした。他の方法はありますか?
ありがとうございました