I have a mixed data (categorical and continuous) and I want to compute the modified Gower coefficient using the vegandist command
library(vegan)
vegdist(mydata, "altGower")
However, the following error appears:
Error in rowSums(x, na.rm = TRUE) : 'x' must be numeric
I guess it is because the column for the categorical variables are factor variables and non-numeric. If this is the problem is there any other package I can compute these distance using the modified Gower?