diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -25,15 +25,11 @@ This is a basic example which shows you how to solve a common problem: ``` r library(csobczak.r) +library(patchwork) X <- matrix(data = rnorm(100), nrow = 10) R <- cor(X) -corplot(R, title = 'Example Correlation Plot') -``` - -<img src="man/figures/README-example-1.png" alt="" width="100%" /> - -``` r +corplot(R, title = 'Example Correlation Plot') + networkplot(R, title = 'Example Network Plot') ``` -<img src="man/figures/README-example-2.png" alt="" width="100%" /> +<img src="man/figures/README-example-1.png" alt="" width="100%" /> |
