From 857d4048c5a2e84d77f6c374dd26edc3a650bd23 Mon Sep 17 00:00:00 2001 From: cdemkegit Date: Thu, 22 Aug 2024 09:31:35 -0600 Subject: [PATCH] updated readme --- README.Rmd | 8 ++++---- README.md | 13 ------------- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/README.Rmd b/README.Rmd index 5b5b983..1087036 100644 --- a/README.Rmd +++ b/README.Rmd @@ -41,16 +41,16 @@ library(utVizR) What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so: -```{r cars} -summary(cars) +```{r} + ``` You'll still need to render `README.Rmd` regularly, to keep `README.md` up-to-date. `devtools::build_readme()` is handy for this. You can also embed plots, for example: -```{r pressure, echo = FALSE} -plot(pressure) +```{r, echo = FALSE} + ``` In that case, don't forget to commit and push the resulting figure files, so they display on GitHub and CRAN. diff --git a/README.md b/README.md index c85ae38..3c4cbd7 100644 --- a/README.md +++ b/README.md @@ -32,23 +32,10 @@ library(utVizR) What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so: -``` r -summary(cars) -#> speed dist -#> Min. : 4.0 Min. : 2.00 -#> 1st Qu.:12.0 1st Qu.: 26.00 -#> Median :15.0 Median : 36.00 -#> Mean :15.4 Mean : 42.98 -#> 3rd Qu.:19.0 3rd Qu.: 56.00 -#> Max. :25.0 Max. :120.00 -``` - You’ll still need to render `README.Rmd` regularly, to keep `README.md` up-to-date. `devtools::build_readme()` is handy for this. You can also embed plots, for example: - - In that case, don’t forget to commit and push the resulting figure files, so they display on GitHub and CRAN.