-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
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
The size of the outliers label is too large #74
Comments
@choonghyunryu use On Try the following,
|
@duttashi Thank you for your kind answer. I used the labelsize argument. Is there any way to a smaller size of the outlier label and make the labels of other observations visible? |
@choonghyunryu its very difficult for me to understand what you've written. |
@duttashi Sorry. I am not fluent in English and communicate using a translate application. trans_usa <- scale(USArrests) |
@choonghyunryu the size of the label within the polygon can be adjusted. Did you even try to see the signature for So if you change the value in
And why should the size of outlier label and the label for other objects within or outside the polygon should be the same? If the font size for the outlier label is the same as the font size for a non-outlier label than distinguishing outlier from non-outlier will be difficult. And this will obviate the entire purpose of visualizing outliers. |
@duttashi Thank you for your quick response. |
Thank you @duttashi for your input. Fixed now, new arguments You need to install the latest developmental version of factoextra from Github |
@kassambara and @choonghyunryu 👍 |
Thank you @kassambara and @duttashi |
The size of the label for outliers in the fviz_cluster function is too large.
After performing DBSCAN clustering with the following code, the outliers label is rendered too large in the plot.
trans_usa <- scale(USArrests)
dc <- fpc::dbscan(trans_usa, eps = 1.24ss, MinPts = NCOL(trans_usa) + 1)
fviz_cluster(dc, data= trans_usa)
I can not see any arguments in the help page that change the size of the outliers label.
The version of the factoextra package is 1.0.5.
The operating system is CentOS 7, R 3.4.1 environment
The text was updated successfully, but these errors were encountered: