diff options
Diffstat (limited to 'README.Rmd')
| -rw-r--r-- | README.Rmd | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,8 +35,9 @@ This is a basic example which shows you how to solve a common problem: ```{r example} library(csobczak.r) +library(patchwork) X <- matrix(data = rnorm(100), nrow = 10) R <- cor(X) -corplot(R, title = 'Example Correlation Plot') +corplot(R, title = 'Example Correlation Plot') + networkplot(R, title = 'Example Network Plot') ``` |
