Closed LDSamson closed 3 years ago
This might be a (minor) bug: The following code will cut off the highest top labels in corrplot version 0.84 (and R version 4.0 or 3.6.0):
library(corrplot) names(mtcars) <- paste0(names(mtcars), ".longer.name") M <- cor(mtcars) corrplot(M, type = "lower", order = "hclust")
It does not happen when label is set to "upper":
corrplot(M, type = "lower", order = "hclust")
It also does not happen in default mode:
corrplot(M, type = "full", order = "hclust")
This might be a (minor) bug: The following code will cut off the highest top labels in corrplot version 0.84 (and R version 4.0 or 3.6.0):
It does not happen when label is set to "upper":
It also does not happen in default mode: