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 May 31, 2024
1 parent ec66ee5 commit 27c8e70
Show file tree
Hide file tree
Showing 24 changed files with 109 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
84b1da3c
b77664b4
21 changes: 10 additions & 11 deletions html/data-visualization.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ <h2 class="anchored" data-anchor-id="scales">Scales</h2>
<div class="sourceCode cell-code" id="cb15"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb15-1"><a href="#cb15-1" aria-hidden="true" tabindex="-1"></a>n <span class="ot">&lt;-</span> d <span class="sc">+</span> <span class="fu">geom_bar</span>(<span class="fu">aes</span>(<span class="at">fill =</span> fl))</span>
<span id="cb15-2"><a href="#cb15-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb15-3"><a href="#cb15-3" aria-hidden="true" tabindex="-1"></a>n <span class="sc">+</span> <span class="fu">scale_fill_manual</span>(</span>
<span id="cb15-4"><a href="#cb15-4" aria-hidden="true" tabindex="-1"></a> <span class="at">value =</span> <span class="fu">c</span>(),</span>
<span id="cb15-5"><a href="#cb15-5" aria-hidden="true" tabindex="-1"></a> <span class="at">limits =</span> <span class="fu">c</span>(), </span>
<span id="cb15-6"><a href="#cb15-6" aria-hidden="true" tabindex="-1"></a> <span class="at">breaks =</span> <span class="fu">c</span>(),</span>
<span id="cb15-4"><a href="#cb15-4" aria-hidden="true" tabindex="-1"></a> <span class="at">values =</span> <span class="fu">c</span>(<span class="st">"skyblue"</span>, <span class="st">"royalblue"</span>, <span class="st">"blue"</span>, <span class="st">"navy"</span>),</span>
<span id="cb15-5"><a href="#cb15-5" aria-hidden="true" tabindex="-1"></a> <span class="at">limits =</span> <span class="fu">c</span>(<span class="st">"d"</span>, <span class="st">"e"</span>, <span class="st">"p"</span>, <span class="st">"r"</span>),</span>
<span id="cb15-6"><a href="#cb15-6" aria-hidden="true" tabindex="-1"></a> <span class="at">breaks =</span><span class="fu">c</span>(<span class="st">"d"</span>, <span class="st">"e"</span>, <span class="st">"p"</span>, <span class="st">"r"</span>),</span>
<span id="cb15-7"><a href="#cb15-7" aria-hidden="true" tabindex="-1"></a> <span class="at">name =</span> <span class="st">"fuel"</span>, </span>
<span id="cb15-8"><a href="#cb15-8" aria-hidden="true" tabindex="-1"></a> <span class="at">labels =</span> <span class="fu">c</span>(<span class="st">"D"</span>, <span class="st">"E"</span>, <span class="st">"P"</span>, <span class="st">"R"</span>)</span>
<span id="cb15-9"><a href="#cb15-9" aria-hidden="true" tabindex="-1"></a>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
Expand Down Expand Up @@ -574,19 +574,18 @@ <h2 class="anchored" data-anchor-id="themes">Themes</h2>
<li><p><code>u + theme_linedraw()</code>: Uses only black lines.</p></li>
<li><p><code>u + theme_minimal()</code>: Minimal theme.</p></li>
<li><p><code>u + theme_void()</code>: Empty theme.</p></li>
<li><p><code>u + theme()</code>: Customize aspects of the theme such as axis, legend, panel, and facet properties.</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb21"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb21-1"><a href="#cb21-1" aria-hidden="true" tabindex="-1"></a>r <span class="sc">+</span> <span class="fu">ggtitle</span>(<span class="st">"Title"</span>) <span class="sc">+</span> <span class="fu">theme</span>(<span class="at">plot.title.postion =</span> <span class="st">"plot"</span>)</span>
<span id="cb21-2"><a href="#cb21-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb21-3"><a href="#cb21-3" aria-hidden="true" tabindex="-1"></a>r <span class="sc">+</span> <span class="fu">theme</span>(<span class="at">panel.background =</span> <span class="fu">element_rect</span>(<span class="at">fill =</span> <span class="st">"blue"</span>))</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div></li>
<li><p><code>u + theme()</code>: Customize aspects of the theme such as axis, legend, panel, and facet properties.</p></li>
</ul>
<div class="cell">
<div class="sourceCode cell-code" id="cb21"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb21-1"><a href="#cb21-1" aria-hidden="true" tabindex="-1"></a>u <span class="sc">+</span> <span class="fu">labs</span>(<span class="at">title =</span> <span class="st">"Title"</span>) <span class="sc">+</span> <span class="fu">theme</span>(<span class="at">plot.title.position =</span> <span class="st">"plot"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="sourceCode cell-code" id="cb22"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb22-1"><a href="#cb22-1" aria-hidden="true" tabindex="-1"></a>u <span class="sc">+</span> <span class="fu">theme</span>(<span class="at">panel.background =</span> <span class="fu">element_rect</span>(<span class="at">fill =</span> <span class="st">"blue"</span>))</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
</section>
<section id="faceting" class="level2">
<h2 class="anchored" data-anchor-id="faceting">Faceting</h2>
<p>Facets divide a plot into subplots based on the values of one or more discrete variables.</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb22"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb22-1"><a href="#cb22-1" aria-hidden="true" tabindex="-1"></a>t <span class="ot">&lt;-</span> <span class="fu">ggplot</span>(mpg, <span class="fu">aes</span>(cty, hwy)) <span class="sc">+</span> <span class="fu">geom_point</span>()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="sourceCode cell-code" id="cb23"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb23-1"><a href="#cb23-1" aria-hidden="true" tabindex="-1"></a>t <span class="ot">&lt;-</span> <span class="fu">ggplot</span>(mpg, <span class="fu">aes</span>(cty, hwy)) <span class="sc">+</span> <span class="fu">geom_point</span>()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<ul>
<li><p><code>t + facet_grid(. ~ fl)</code>: Facet into a column based on fl.</p></li>
Expand Down Expand Up @@ -630,7 +629,7 @@ <h2 class="anchored" data-anchor-id="zooming">Zooming</h2>
<p>Learn more at <a href="https://ggplot2.tidyverse.org">ggplot2.tidyverse.org</a>.</p>
<p>Updated: 2024-05.</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb24"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb24-1"><a href="#cb24-1" aria-hidden="true" tabindex="-1"></a><span class="fu">packageVersion</span>(<span class="st">"ggplot2"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="sourceCode cell-code" id="cb25"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb25-1"><a href="#cb25-1" aria-hidden="true" tabindex="-1"></a><span class="fu">packageVersion</span>(<span class="st">"ggplot2"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>[1] '3.5.1'</code></pre>
</div>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified html/images/logo-ggplot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified html/images/logo-reticulate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified html/images/logo-shiny.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/images/logo-sparklyr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified html/images/logo-tensorflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions html/keras.html
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,11 @@ <h2 class="anchored" data-anchor-id="callbacks">Callbacks</h2>
<hr>
<p>CC BY SA Posit Software, PBC • <a href="mailto:[email protected]">[email protected]</a><a href="https://posit.co">posit.co</a></p>
<p>Learn more at <a href="https://tensorflow.rstudio.com/">tensorflow.rstudio.com</a>.</p>
<p>Updated: 2023-06.</p>
<p>Updated: 2024-05.</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb3"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb3-1"><a href="#cb3-1" aria-hidden="true" tabindex="-1"></a><span class="fu">packageVersion</span>(<span class="st">"keras"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>[1] '2.11.1'</code></pre>
<pre><code>[1] '2.15.0'</code></pre>
</div>
</div>
<hr>
Expand Down
4 changes: 2 additions & 2 deletions html/reticulate.html
Original file line number Diff line number Diff line change
Expand Up @@ -636,11 +636,11 @@ <h3 class="anchored" data-anchor-id="suggest-an-env-to-use">Suggest an env to us
<hr>
<p>CC BY SA Posit Software, PBC • <a href="mailto:[email protected]">[email protected]</a><a href="https://posit.co">posit.co</a></p>
<p>Learn more at <a href="https://rstudio.github.io/reticulate/">rstudio.github.io/reticulate</a>.</p>
<p>Updated: 2023-06.</p>
<p>Updated: 2024-05.</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb49"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb49-1"><a href="#cb49-1" aria-hidden="true" tabindex="-1"></a><span class="fu">packageVersion</span>(<span class="st">"reticulate"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>[1] '1.28'</code></pre>
<pre><code>[1] '1.37.0'</code></pre>
</div>
</div>
<hr>
Expand Down
6 changes: 5 additions & 1 deletion html/shiny-python.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,11 @@ <h1 class="title">Shiny for Python :: Cheatsheet</h1>


<div class="no-row-height column-margin column-container"><div class="cell">

<img src="images/logo-shiny.png" height="138" alt="Hex logo for Shiny - A blue hexagon with the word 'Shiny' written in white in a flowing cursive font. The tail of the 'y' flows back to the left to underline the word."> <br><br><a href="../shiny-python.pdf">
<p>
<i class="bi bi-file-pdf"></i> Download PDF
</p>
</a><p><a href="../shiny-python.pdf"><img src="../pngs/shiny-python.png" width="200" alt=""> </a> <br><br></p>
</div></div><section id="build-an-app" class="level2">
<h2 class="anchored" data-anchor-id="build-an-app">Build an App</h2>
<p>A <strong>Shiny</strong> app is an interactive web page (<strong>ui</strong>) powered by a live Python session run by a <strong>server</strong> (or by a browser with Shinylive).</p>
Expand Down
16 changes: 15 additions & 1 deletion html/sparklyr.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,21 @@ <h1 class="title">Data science in Spark with sparklyr :: Cheatsheet</h1>

<!-- Page 1 -->
<div class="no-row-height column-margin column-container"><div class="cell">

<img src="images/logo-sparklyr.png" height="138" alt="Hex logo for sparklyr - Neon shooting stars of various shapes and sizes flying across a black and grey background."> <br><br><a href="../sparklyr.pdf">
<p>
<i class="bi bi-file-pdf"></i> Download PDF
</p>
<img src="../pngs/sparklyr.png" width="200" alt=""> </a> <br><br>
<p>
Translations (PDF)
</p>
<ul>
<li><a href="../translations/chinese/sparklyr_zh_cn.pdf"><i class="bi bi-file-pdf"></i>Chinese</a></li>
<li><a href="../translations/chinese/sparklyr_zh_tw.pdf"><i class="bi bi-file-pdf"></i>Chinese</a></li>
<li><a href="../translations/german/sparklyr_de.pdf"><i class="bi bi-file-pdf"></i>German</a></li>
<li><a href="../translations/japanese/sparklyr_ja.pdf"><i class="bi bi-file-pdf"></i>Japanese</a></li>
<li><a href="../translations/spanish/sparklyr_es.pdf"><i class="bi bi-file-pdf"></i>Spanish</a></li>
</ul>
</div></div><section id="connect" class="level1">
<h1>Connect</h1>
<section id="databricks-connect-v2" class="level2">
Expand Down
Loading

0 comments on commit 27c8e70

Please sign in to comment.