1
私は "confidence_table"という名前のチブルを持っています。 mutate動詞を使用して新しい列を追加しようとすると、これは機能しません。rep機能でmutate作業をしますか?
# A tibble: 12 x 3
# Groups: Age [2]
Age Condition Prop
<fctr> <fctr> <dbl>
0 old 0.73993056
1 old 0.75590278
0 old 0.15069444
1 old 0.13090278
0 new 0.06388889
1 new 0.04965278
0 new 0.05902778
1 new 0.05416667
0 lure 0.23055556
1 lure 0.23645833
0 lure 0.13819444
1 lure 0.12013889
Iは、基地rからこの関数を使用して、
confidence_table$Confidence <- as.factor(rep(c("HC", "LC"), times = 3, each = 2))
# A tibble: 12 x 4
# Groups: Age [2]
Age Condition Prop Confidence
<fctr> <fctr> <dbl> <fctr>
0 old 0.73993056 HC
1 old 0.75590278 HC
0 old 0.15069444 LC
1 old 0.13090278 LC
0 new 0.06388889 HC
1 new 0.04965278 HC
0 new 0.05902778 LC
1 new 0.05416667 LC
0 lure 0.23055556 HC
1 lure 0.23645833 HC
0 lure 0.13819444 LC
1 lure 0.12013889 LC
を動作しこれが基地Rコードで動作予想出力されます。 はしかし、私が使用している場合:
confidence_table <- confidence_table %>%
mutate(Confidence = rep(c("HC", "LC"), times = 3, each = 2))
それは言う:mutate_implで エラー(.DATA、ドット): 列の自信は長さ6(グループサイズ)または1つ、ない12
でなければなりません何が問題なのですか?