From 8fcd8188a7678b2b3cb9f61a57d66b5032da05fb Mon Sep 17 00:00:00 2001 From: Cristi Bourceanu Date: Sat, 2 Nov 2024 13:43:21 +0000 Subject: [PATCH] Remove rmd alltogether --- posts/rmarkdown-post/index.qmd | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 posts/rmarkdown-post/index.qmd diff --git a/posts/rmarkdown-post/index.qmd b/posts/rmarkdown-post/index.qmd deleted file mode 100644 index 764bb32..0000000 --- a/posts/rmarkdown-post/index.qmd +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "R Markdown Document" -output: html_document -date: "2022-08-29" ---- - -```{r setup, include=FALSE} -knitr::opts_chunk$set(echo = TRUE) -``` - -## R Markdown - -This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see . - -When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: - -```{r cars} -summary(cars) -``` - -## Including Plots - -You can also embed plots, for example: - -```{r pressure, echo=FALSE} -plot(pressure) -``` - -Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.