diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-06-18 11:40:17 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-06-18 11:40:17 -0700 |
| commit | 56a1b8ec3112f741be5e4ee01f3f38025439da3c (patch) | |
| tree | 40341dd2849dd89173aec70a48583bd53e806888 /README.Rmd | |
| parent | c9febb74dddab29b7e60488c91564796387f2785 (diff) | |
Fix things in readme
Diffstat (limited to 'README.Rmd')
| -rw-r--r-- | README.Rmd | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -22,7 +22,7 @@ The goal of csobczak.r is to easily provide convenience functions I find useful. ## Installation -You can install the development version of rcsobczak like so: +You can install the development version of csobczak.r like so: ``` r install.packages('pak') @@ -33,11 +33,10 @@ pak::pkg_install('git::https://codeberg.org/csobczak/csobczak.r') ### Plotting functions ```{r example} -library(csobczak.r) library(patchwork) X <- matrix(data = rnorm(100), nrow = 10) R <- cor(X) -p1 <- heatmap(R, title = 'Example Correlation Plot') -p2 <- networkplot(R, title = 'Example Network Plot') +p1 <- csobczak.r::heatmap(R, title = 'Example Correlation Plot') +p2 <- csobczak.r::networkplot(R, title = 'Example Network Plot') p1 + p2 ``` |
