我尝试使用纯素包在R中进行规范对应分析。我的连续变量运行没问题,但是当我包含一些分类变量(我能在XLSTAT程序中完成)时,R会返回错误。 如何在我的代码中包含它?
我的分类变量是:
这是我的代码:
gastropod_matrix <- as.matrix(mollusca[,21:24])
gastropod_cca <- cca(gastropod_matrix~porifera_presence + category +
average + bpi_st_fi + northing + easting + depth, data=mollusca)
plot(gastropod_cca)
我知道R可能会与此代码混淆,但我不知道如何更改它。请帮忙!