The medium is the message







R programmers as content creators

Isabella Velásquez | Cascadia R Conference

Introduction

@ivelasq

@ivelasq3

@ivelasq3

ivelasq.rbind.io

Data wrangling workflow

Have I become an influencer?

Three takeaways about the medium

  1. Medium matters
  2. Tailoring communication
  3. Medium shapes visibility

The medium is the message

Content creation!

Defining content

  • The information and/or experience
  • The medium/channel in which the information is delivered
  • Any beneficial features the medium adds to the information or experience

‘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?

Attract, engage, delight

Creating a Quarto document

quarto-doc.qmd

Creating a Quarto document

quarto-doc.qmd
---
title: "Penguins, meet Quarto!"
format: html
editor: visual
---

Creating a Quarto document

quarto-doc.qmd
---
title: "Penguins, meet Quarto!"
subtitle: "Intro to Quarto Exercise"
format: html
editor: visual
---

Creating a Quarto document

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.

Creating a Quarto document

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()
```

Creating a Quarto document

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()
```

Creating a Quarto document

Knowing your audience

  1. Level of engagement
  2. Interactivity
  3. Intended depth of understanding

R programmers as content creators

Dr. Andrew Heiss’ Data Visualization course

Dr. Andrew Heiss’ Data Visualization course

Quarto is pretty awesome

---
title: "Untitled"
format: html
---

Quarto is pretty awesome

---
title: "Untitled"
format: pptx
---

Quarto is pretty awesome

---
title: "Untitled"
format: revealjs
---

Quarto is pretty awesome

---
title: "Untitled"
format: pdf
---

George Stagg’s webr blog post

George Stagg’s webr blog post

Rules for effective content creation

  • Create a long-term content roadmap
  • Run an audit
  • Set SMART goals
  • Know your personas
  • Measure and analyze your content
  • Promote & attract internal ‘influencers’
  • Get feedback
  • Have fun

‘The rule is simple: if you don’t write it down, it never happened.’

— Michael Lopp

Content creation at Cascadia R

Thank you

@ivelasq

@ivelasq3

@ivelasq3

ivelasq.rbind.io

Acknowledgements

References

  • https://www.smashingmagazine.com/2011/07/the-medium-is-the-message/
  • https://www.adobe.com/express/learn/blog/content-creator
  • https://www.toprankblog.com/2013/03/what-is-content/
  • https://www.amberoon.com/agile-compliance-blog/bid/185391/data-visualization-the-medium-is-the-message