Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Jun 20, 2024
1 parent e7808c8 commit bfc1415
Show file tree
Hide file tree
Showing 30 changed files with 682 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
752c4b0c
ac31c849
12 changes: 6 additions & 6 deletions 2023/02-publication-quality-figs/slides.html
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ <h2>Viridis</h2>
<span id="cb5-3"><a></a> <span class="fu">geom_point</span>(<span class="at">size =</span> <span class="dv">4</span>)</span>
<span id="cb5-4"><a></a>v <span class="co">#default colors</span></span>
<span id="cb5-5"><a></a>v <span class="sc">+</span> <span class="fu">scale_color_viridis_c</span>() <span class="co">#viridis colors</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="2">
<div class="cell quarto-layout-panel" data-layout-ncol="2" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down Expand Up @@ -592,7 +592,7 @@ <h2>Viridis variants</h2>
<span id="cb6-5"><a></a>v <span class="sc">+</span> <span class="fu">scale_color_viridis_c</span>(<span class="at">option =</span> <span class="st">"rocket"</span>)</span>
<span id="cb6-6"><a></a>v <span class="sc">+</span> <span class="fu">scale_color_viridis_c</span>(<span class="at">option =</span> <span class="st">"mako"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</details>
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="3">
<div class="cell quarto-layout-panel" data-layout-ncol="3" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 33.3%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down Expand Up @@ -652,7 +652,7 @@ <h2>Viridis customization</h2>
<p>The upper end of viridis palettes tends to be very bright yellow. You can limit the range of colors used with the <code>begin</code> and <code>end</code> arguments</p>
<div class="sourceCode cell-code" id="cb7"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb7-1"><a></a>v <span class="sc">+</span> <span class="fu">scale_color_viridis_c</span>()</span>
<span id="cb7-2"><a></a>v <span class="sc">+</span> <span class="fu">scale_color_viridis_c</span>(<span class="at">begin =</span> <span class="fl">0.1</span>, <span class="at">end =</span> <span class="fl">0.9</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="2">
<div class="cell quarto-layout-panel" data-layout-ncol="2" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down Expand Up @@ -749,7 +749,7 @@ <h2>Manual color palettes</h2>
<span id="cb11-6"><a></a> <span class="fu">scale_color_manual</span>(<span class="at">values =</span> my_cols, <span class="at">aesthetics =</span> <span class="fu">c</span>(<span class="st">"color"</span>, <span class="st">"fill"</span>))</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="fragment">
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="2">
<div class="cell quarto-layout-panel" data-layout-ncol="2" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down Expand Up @@ -940,7 +940,7 @@ <h2>Custom labels</h2>
<p>If you only want to change the axis title, you can also do that in <code>labs()</code></p>
<div class="sourceCode cell-code" id="cb20"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb20-1"><a></a>(p2 <span class="ot">&lt;-</span> p2 <span class="sc">+</span> <span class="fu">labs</span>(<span class="at">x =</span> <span class="st">"Flipper Length (mm)"</span>, <span class="at">y =</span> <span class="st">"Bill Length (mm)"</span>))</span>
<span id="cb20-2"><a></a>(p3 <span class="ot">&lt;-</span> p3 <span class="sc">+</span> <span class="fu">labs</span>(<span class="at">x =</span> <span class="st">"Flipper Length (mm)"</span>, <span class="at">y =</span> <span class="st">"Bill Depth (mm)"</span>))</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="2">
<div class="cell quarto-layout-panel" data-layout-ncol="2" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down Expand Up @@ -1002,7 +1002,7 @@ <h2>Complete themes</h2>
<p>There are several complete themes built-in to <code>ggplot2</code>, and many more available from other packages such as <code>ggthemes</code>.</p>
<div class="sourceCode cell-code" id="cb27"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb27-1"><a></a>p2 <span class="sc">+</span> <span class="fu">theme_bw</span>()</span>
<span id="cb27-2"><a></a>p2 <span class="sc">+</span> <span class="fu">theme_minimal</span>()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell quarto-layout-panel" data-layout-align="center" data-layout-ncol="2">
<div class="cell quarto-layout-panel" data-layout-ncol="2" data-layout-align="center">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<div class="quarto-figure quarto-figure-center">
Expand Down
Binary file modified 2024/01-foundations/notes.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions 2024/02-data-comm/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,7 @@ install.packages("esquisse")

esquisse::esquisser(penguins)


# Measles data - not in git ####

measles <- read.csv(here::here("2024", "02-data-comm", "measles.csv"))
Binary file added 2024/03-extensions/krat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bfc1415

Please sign in to comment.