QUARTO

Dr. Ajay Kumar Koli (PhD) \(\cdot\) SARA Institute of Data Science, India

Most of Us Use

Some of Us Use

None of Us Use


Quarto


β€œAn open-source scientific and technical publishing system to prepare articles & reports; presentations; dashboards; websites; books; and interactive documents.

Quarto Publishing System

Create Quarto Default Document

Step 1

Step 2

Quarto Document: Save & Render

Output of Quarto Document

.qmd Files

YAML, Markdown & Code Cells

Practice Quarto using RStudio

  1. Create a Quarto document with HTML format.

  2. Explain YAML and Text:

🀯 Your Turn

07:00

Practice Quarto

  1. Explain Code Chunk
  2. Install tidyverse package.

🀯 Your Turn

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)

```