The medium is the message
R programmers as content creators
‘A content creator is someone who crafts informative or engaging material to be communicated through diverse mediums or channels.’
Isn’t “content” a marketing term?
quarto-doc.qmd
quarto-doc.qmd
---
title: "Penguins, meet Quarto!"
subtitle: "Intro to Quarto Exercise"
format: html
editor: visual
---
This is some [markdown](https://www.markdownguide.org/) text.
```{r}
library(ggplot2)
library(palmerpenguins)
ggplot(penguins,
aes(x = flipper_length_mm, y = bill_length_mm)) +
geom_point(aes(color = species, shape = species)) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(
title = "Flipper and bill length",
subtitle = "Dimensions for penguins at Palmer Station LTER",
x = "Flipper length (mm)", y = "Bill length (mm)",
color = "Penguin species", shape = "Penguin species"
) +
theme_minimal()
```
quarto-doc.qmd
---
title: "Penguins, meet Quarto!"
subtitle: "Intro to Quarto Exercise"
format: html
editor: visual
---
This is some [markdown](https://www.markdownguide.org/) text.
```{r}
#| warning: false
library(ggplot2)
library(palmerpenguins)
ggplot(penguins,
aes(x = flipper_length_mm, y = bill_length_mm)) +
geom_point(aes(color = species, shape = species)) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(
title = "Flipper and bill length",
subtitle = "Dimensions for penguins at Palmer Station LTER",
x = "Flipper length (mm)", y = "Bill length (mm)",
color = "Penguin species", shape = "Penguin species"
) +
theme_minimal()
```
‘The rule is simple: if you don’t write it down, it never happened.’
— Michael Lopp
https://ivelasq.quarto.pub/you-r-a-content-creator