Testing distill article CSS

A new article created using the Distill format.

Nora Jones https://example.com/norajones (Spacely Sprockets)https://example.com/spacelysprokets
2020-11-09

Style here

$body-bg: red;
body{
  background-color: $body-bg;
}

Text here

Distill is a publication format for scientific and technical writing, native to the web.

Learn more about using Distill for R Markdown at https://rstudio.github.io/distill.

Code here

library(palmerpenguins)
library(tidyverse)
penguins %>% 
  filter(year == 2007 & species == "Gentoo") %>% 
  summarise(mean_fl = mean(flipper_length_mm, na.rm = TRUE))
# A tibble: 1 x 1
  mean_fl
    <dbl>
1    215.
# Histogram example: flipper length by species
ggplot(data = penguins, aes(x = flipper_length_mm)) +
  geom_histogram(aes(fill = species), alpha = 0.5, position = "identity") +
  scale_fill_manual(values = c("darkorange","darkorchid","cyan4"))
some cool penguins

Figure 1: some cool penguins


  1. We strongly recommend that if you are not already a fluent GitHub user you choose HTTPS over SSH.↩︎

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY 4.0. Source code is available at https://github.com/apreshill/distill-css, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".