R Markdown is an authoring framework for R that enables you to write reports, presentations, and documents in a single file. It combines narrative text with R code, allowing for seamless integration of analysis and results.
To create an R Markdown document, you can use RStudio. Follow these steps:
File
> New File
> R Markdown...
.OK
.This will create a basic template for you to work with.
An R Markdown file typically has three main components:
---
title: "My First Report"
author: "Your Name"
date: "`r Sys.Date()`"
output: html_document
---
## Analysis of Sample Data
This section will analyze the sample data provided.
## Data Summary
Here, we summarize the dataset using descriptive statistics.
R code chunks allow you to execute R code and include the results in your report. Here’s how to add a code chunk:
```{r}
library(ggplot2)
data <- data.frame(
category = c("A”, “B”, “C"),
values = c(23, 45, 12)
)
ggplot(data, aes(x=category, y=values)) + geom_bar(stat="identity")
```
To render your R Markdown file into a final report (HTML, PDF, or Word), simply click the Knit
button in RStudio. This will execute the R code and compile all elements into a cohesive document.
R Markdown provides a robust, flexible way to create reports that combine analysis and narrative. By utilizing the structure of R Markdown, you can enhance the clarity and effectiveness of your reporting. Experiment with the features to make your reports not only informative but also visually appealing.