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 Nov 23, 2023
1 parent 6f9dbb0 commit 3a58ad3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eac1c09f
e92db93f
Binary file modified Building-reproducible-analytical-pipelines-with-R.epub
Binary file not shown.
Binary file modified Building-reproducible-analytical-pipelines-with-R.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions fprog.html
Original file line number Diff line number Diff line change
Expand Up @@ -814,8 +814,8 @@ <h3 data-number="6.2.1" class="anchored" data-anchor-id="functions-are-first-cla
<div class="sourceCode cell-code" id="cb74"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb74-1"><a href="#cb74-1" aria-hidden="true" tabindex="-1"></a>chronicler<span class="sc">::</span><span class="fu">read_log</span>(result)</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] "Complete log:"
[2] "NOK! sqrt() ran unsuccessfully with following exception: NaNs produced at 2023-11-21 09:24:56"
[3] "Total running time: 0.000830888748168945 secs" </code></pre>
[2] "NOK! sqrt() ran unsuccessfully with following exception: NaNs produced at 2023-11-23 15:54:32"
[3] "Total running time: 0.000799417495727539 secs" </code></pre>
</div>
</div>
<p>The <code>{purrr}</code> package also comes with function factories that you might find useful (<code>{possibly}</code>, <code>{safely}</code> and <code>{quietly}</code>).</p>
Expand Down Expand Up @@ -1678,7 +1678,7 @@ <h3 data-number="6.4.1" class="anchored" data-anchor-id="base-capabilities"><spa
<div class="cell-output cell-output-stdout">
<pre><code>function (x, ...)
UseMethod("print")
&lt;bytecode: 0x556b0d5d3120&gt;
&lt;bytecode: 0x55dc7ff80120&gt;
&lt;environment: namespace:base&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1722,7 +1722,7 @@ <h3 data-number="6.4.1" class="anchored" data-anchor-id="base-capabilities"><spa
}
invisible(x)
}
&lt;bytecode: 0x556b0f4320e8&gt;
&lt;bytecode: 0x55dc81ddf0e8&gt;
&lt;environment: namespace:base&gt;</code></pre>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions search.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion targets.html
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ <h3 data-number="13.2.1" class="anchored" data-anchor-id="targets.rs-anatomy"><s
<span id="cb3-7"><a href="#cb3-7" aria-hidden="true" tabindex="-1"></a> <span class="fu">summarize_data</span>(data)) <span class="co"># Call your custom functions.</span></span>
<span id="cb3-8"><a href="#cb3-8" aria-hidden="true" tabindex="-1"></a>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<p>The pipeline is nothing but a list (told you lists where a very important object) of <em>targets</em>. A target is defined using the <code>tar_target()</code> function and has at least two inputs: the first is the name of the target (without quotes) and the second is the function that generates the target. So a target defined as <code>tar_target(y, f(x))</code> can be understood as <code>y &lt;- f(x)</code>. The next target can use the output of the previous target as an input, so you could have something like <code>tar_target(z, f(y))</code> (just like in the template).</p>
<p>The pipeline is nothing but a list (told you lists were a very important object) of <em>targets</em>. A target is defined using the <code>tar_target()</code> function and has at least two inputs: the first is the name of the target (without quotes) and the second is the function that generates the target. So a target defined as <code>tar_target(y, f(x))</code> can be understood as <code>y &lt;- f(x)</code>. The next target can use the output of the previous target as an input, so you could have something like <code>tar_target(z, f(y))</code> (just like in the template).</p>
</section>
</section>
<section id="a-pipeline-is-a-composition-of-pure-functions" class="level2" data-number="13.3">
Expand Down

0 comments on commit 3a58ad3

Please sign in to comment.