summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5f95c2a..950f68c 100644
--- a/README.md
+++ b/README.md
@@ -25,10 +25,15 @@ pak::pkg_install('git::https://codeberg.org/csobczak/csobczak.r')
``` r
library(csobczak.r)
+#>
+#> Attaching package: 'csobczak.r'
+#> The following object is masked from 'package:stats':
+#>
+#> heatmap
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
```