From 0a3427335bd7d23d22a989cb436a25465ceaf52a Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Tue, 16 Jun 2026 17:19:44 -0700 Subject: Put images next to each other --- README.Rmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README.Rmd') diff --git a/README.Rmd b/README.Rmd index 3aafe24..bf24ff4 100644 --- a/README.Rmd +++ b/README.Rmd @@ -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') ``` -- cgit v1.2.3