I am trying to create hierarchical cluster by using corclust function from klaR package in R. The function is trying to pass the values to the hclust function, but it is not accepting the parameters like mincor, method.
code
plot(corclust(iris[,-5],iris[,5],mincor=0.5))
While running the above line am getting the following error.
Error
Error in corclust(iris[, -5], iris[, 5], mincor = 0.5) : unused argument (mincor = 0.5)
Please let me know how to resolve this error.