Explain disadvantages of density-based clustering in R?
Answer Posted / Awanish Kumar Jaiswal
Density-based clustering, such as DBSCAN, has several disadvantages. One major drawback is the requirement to set arbitrary values for parameters like minimum number of points (eps) and minimum number of points for a cluster (minPts). These values can significantly impact the results but are not always easy to determine. Another issue is that noise points or outliers can have a large influence on the resulting clusters, especially if they are densely packed. Additionally, density-based clustering may struggle with clusters of varying densities and might not work well for data with a wide range of values.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers