Skip to content

Commit 473baa8

Browse files
committed
Correct ordering of multiple marks
1 parent 0cda4a6 commit 473baa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/corrplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ corrplot <- function(corr,
813813
l <- length(sig.level)
814814
for (i in seq_along(sig.level)) {
815815
iter <- l + 1 - i
816-
pchTmp <- paste(rep(pch, iter), collapse = "")
816+
pchTmp <- paste(rep(pch, i), collapse = "")
817817
if(i == length(sig.level)) {
818818
locs <- which(pNew < sig.level[iter])
819819
if (length(locs))

0 commit comments

Comments
 (0)