summaryrefslogtreecommitdiff
path: root/README.Rmd
diff options
context:
space:
mode:
authorChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
committerChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
commitc9febb74dddab29b7e60488c91564796387f2785 (patch)
tree389dc3744bec3568dd2621eb9ed75ede3efb4bee /README.Rmd
parentc9155f21e709ff2d2b84f132f2e8bdf62f0078b8 (diff)
Rename corplot to heatmap
Diffstat (limited to 'README.Rmd')
-rw-r--r--README.Rmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.Rmd b/README.Rmd
index ae302ae..2633b1e 100644
--- a/README.Rmd
+++ b/README.Rmd
@@ -37,7 +37,7 @@ library(csobczak.r)
library(patchwork)
X <- matrix(data = rnorm(100), nrow = 10)
R <- cor(X)
-p1 <- corplot(R, title = 'Example Correlation Plot')
+p1 <- heatmap(R, title = 'Example Correlation Plot')
p2 <- networkplot(R, title = 'Example Network Plot')
p1 + p2
```