library(ggplot2)
library(sf)
library(rnaturalearth)
# Get the data
india_states <- ne_states(country = "india", returnclass = "sf")
# Create the plot
ggplot(data = india_states) +
geom_sf(fill = "white", color = "grey") +
geom_sf_text(aes(label = name), size = 4, check_overlap = TRUE) +
theme_minimal() +
labs(title = "States of India")My Second Quarto Document
Introduction
Diabetes is a big problem.
This is an important table.
| Col1 | Col2 | Col3 |
|---|---|---|
| ICPH Code | HbA1c | Age |
|---|---|---|
| 001 | 5.7 | 37 |
| 002 | 12.2 | 65 |
| 003 | 6.5 | 42 |
Hello Bella
Hello Aayan
- Violin
- Football
- Programming
Hello Aadi
- Legos
- Violin
- Playing with Amaanu
This is the report for the mtcars dataset.
The dataset has observations.
df <- mtcarsThe mean miles per gallon was 20.1.
Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.
Running Code
When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
1 + 1[1] 2
You can add options to executable code like this
[1] 4
The echo: false option disables the printing of code (only output is displayed).