summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 3 insertions, 9 deletions
diff --git a/README.md b/README.md
index 950f68c..c6665cb 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ 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')
@@ -24,17 +24,11 @@ pak::pkg_install('git::https://codeberg.org/csobczak/csobczak.r')
### Plotting functions
``` 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 <- 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
```