Introduction
RMarkdown creates dynamic documents combining code, output, and narrative. It produces HTML, PDF, and Word documents.
Creating RMarkdown
# New file > R Markdown
# Or
rmarkdown::render("file.Rmd")
Structure
---
title: "My Document"
output: html_document
---
Code Chunks
# R code here
Chunk Options
# options: echo, eval, include, warning, message
Output Types
output: html_document
output: pdf_document
output: word_document
output: beamer_presentation
Summary
RMarkdown creates reproducible reports. Use it for documentation and sharing analysis.