diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-06-17 00:23:03 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-06-17 00:23:03 -0700 |
| commit | c9febb74dddab29b7e60488c91564796387f2785 (patch) | |
| tree | 389dc3744bec3568dd2621eb9ed75ede3efb4bee /README.md | |
| parent | c9155f21e709ff2d2b84f132f2e8bdf62f0078b8 (diff) | |
Rename corplot to heatmap
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 ``` |
