We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Returns: "Unknown parameters: shape"
This is because there is a problem in .addoutliers function.
in fviz_cluster.R: line 581: size = labelsize, vjust = -0.7, color = outlier.color, shape = outlier.shape)
If you remove the "shape = outlier.shape" it operates normally.
Example:
library(dbscan) scaled_usa <- scale(USArrests) fit <- dbscan(scaled_usa, eps=1.24, minPts=NCOL(scaled_usa) + 1) fviz_cluster(fit, data=scaled_usa) Error: Unknown parameters: shape
Thank you for factoextra.
The text was updated successfully, but these errors were encountered:
The unknown parameter shape has been know removed from geom_text.
Thank you for your contribution...
Best Regards, A. kassambara
Sorry, something went wrong.
I have been useful to your solution. And, thanks to the quick patch.
Best Regards, Choonghyun Ryu
No branches or pull requests
Returns: "Unknown parameters: shape"
This is because there is a problem in .addoutliers function.
in fviz_cluster.R:
line 581: size = labelsize, vjust = -0.7, color = outlier.color, shape = outlier.shape)
If you remove the "shape = outlier.shape" it operates normally.
Example:
library(dbscan)
scaled_usa <- scale(USArrests)
fit <- dbscan(scaled_usa, eps=1.24, minPts=NCOL(scaled_usa) + 1)
fviz_cluster(fit, data=scaled_usa)
Error: Unknown parameters: shape
Thank you for factoextra.
The text was updated successfully, but these errors were encountered: