Skip to content

Commit 4e632dd

Browse files
committed
update date
1 parent dde56e5 commit 4e632dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: corrplot
22
Type: Package
33
Title: Visualization of a Correlation Matrix
44
Version: 0.88
5-
Date: 2021-05-10
5+
Date: 2021-05-11
66
Authors@R: c(
77
person("Taiyun", "Wei", email = "weitaiyun@gmail.com", role = c("cre", "aut")),
88
person("Viliam", "Simko", email = "viliam.simko@gmail.com", role = "aut"),

vignettes/corrplot-intro.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,11 @@ corrplot(M, type = "lower", order = "hclust", tl.col = "black", tl.srt = 45)
216216
```
217217

218218

219-
# Assign and display color using cl.lim
219+
# Assign and display colors by cl.lim
220220

221221
```{r cl_lim}
222222
# when is.corr=TRUE, cl.lim only affect the color legend
223-
# If you change it, the color is still assigned on [-1, 1]
223+
# If you change it, the color on matrix is still assigned on [-1, 1]
224224
corrplot(M/2)
225225
corrplot(M/2, cl.lim=c(-0.5,0.5))
226226
@@ -236,7 +236,7 @@ corrplot(M*2, is.corr = FALSE, cl.lim=c(-2, 2))
236236
# for showing the usage of cl.lim, run with warning
237237
corrplot(M*2, is.corr = FALSE, cl.lim=c(-2, 2) * 2)
238238
239-
## matrix in 0.5~0.6, a good example
239+
## matrix in [50, 60]
240240
corrplot(abs(M)*10+50, is.corr = FALSE, cl.lim=c(50, 60), col=col0(10))
241241
```
242242

0 commit comments

Comments
 (0)