07:00
Dr. Ajay Kumar Koli (PhD) β SARA Institute of Data Science, India
βAn open-source scientific and technical publishing system to prepare articles & reports; presentations; dashboards; websites; books; and interactive documents.
.qmd
FilesCreate a Quarto document with HTML format.
Explain YAML and Text:
07:00
tidyverse
package.07:00
---
title: "Quarto Exercise"
author: "Your Name"
date: "today"
format: html
---
# Quarto Exercise
Welcome to this Quarto exercise! In this exercise, we will practice using YAML, text, and code chunks to create a simple document.
## Introduction
Quarto is a powerful tool for creating documents that integrate text, code, and visualizations. In this exercise, we will create a simple plot using R.
## Code Chunk
Below is a code chunk that generates a simple plot using R.
```{r}
plot(1:100)
```