Katja Kozjek
NBIS, SciLifeLab
27-Mar-2026
What tools, softwares do you use to perform analysis? What do you use for calculations and visualizations?
How do you write reports, journal articles, presentations?
Quarto is an open-source scientific and technical publishing system.

Quarto file – a plain text file that has the extension .qmd
quarto::quarto_preview("report.qmd")quarto preview report.qmdquarto::quarto_render("report.qmd")quarto render report.qmd

---
title: "Intro to Quarto"
format: html
---
---# Meet the penguins
The `palmerpenguins` data contains size measurements for three penguin species
observed on three islands in the Palmer Archipelago, Antarctica.

The three species of penguins have quite distinct
distributions of physical dimensions (@fig-penguins).
## Bill dimensions
## Bill dimensions
```{r}
#| label: fig-penguins
#| fig-cap: "Bill dimensions of penguins across three species."
#| fig-width: 10
#| fig-height: 5
penguins %>%
ggplot(aes(x = bill_length_mm, y = bill_depth_mm)) +
geom_point(aes(color = species,
shape = species),
size = 2) +
geom_smooth(method = "lm", se = FALSE, aes(color = species)) +
scale_color_manual(values = c("darkorange","darkorchid","cyan4")) +
labs(color = "Species", shape = "Species") +
xlab("Bill length (mm)") + ylab("Bill depth (mm)") +
theme_bw()
```