R 中的 Dunn 测试:关于某些东西被强制转换为一个因素的错误消息
Dunn test in R: error message about something being coerced to a factor
我正在尝试在 R 中进行 Dunn 测试。这是我的代码:
DTP = dunnTest(P~SoilSeries, data=df3, method="bh")
我收到此错误消息:Warning message: SoilSeries was coerced to a factor.
我不知道该怎么办。我用 as.factor 将 SoilSeries 变成了一个因子,但是 df3 不再是 table。我是初学者,非常困惑,非常感谢任何帮助。谢谢!
我假设 SoilSeries
是 df3
中的一个列。
我假设 df3
是 dataframe
,如果不是,您可以先将 df3
转换为 df,
df3 <- as.data.frame(df3)
然后使用as.factor
df3$SoilSeries <- as.factor(df3$SoilSeries)
并且 Warning message: SoilSeries was coerced to a factor.
不是错误,R 只是将 SoilSeries 转换为 Dunn 检验的因子。
我正在尝试在 R 中进行 Dunn 测试。这是我的代码:
DTP = dunnTest(P~SoilSeries, data=df3, method="bh")
我收到此错误消息:Warning message: SoilSeries was coerced to a factor.
我不知道该怎么办。我用 as.factor 将 SoilSeries 变成了一个因子,但是 df3 不再是 table。我是初学者,非常困惑,非常感谢任何帮助。谢谢!
我假设 SoilSeries
是 df3
中的一个列。
我假设 df3
是 dataframe
,如果不是,您可以先将 df3
转换为 df,
df3 <- as.data.frame(df3)
然后使用as.factor
df3$SoilSeries <- as.factor(df3$SoilSeries)
并且 Warning message: SoilSeries was coerced to a factor.
不是错误,R 只是将 SoilSeries 转换为 Dunn 检验的因子。