Welcome to the website. I hope you enjoy it!
$body-bg: red;
body{
background-color: $body-bg;
}
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.
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"))
We strongly recommend that if you are not already a fluent GitHub user you choose HTTPS over SSH.↩︎
If you see mistakes or want to suggest changes, please create an issue on the source repository.
Text and figures are licensed under Creative Commons Attribution CC BY 4.0. Source code is available at https://github.com/rstudio/distill, 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 ...".