Skip to content

Commit

Permalink
booktem and manifesto
Browse files Browse the repository at this point in the history
  • Loading branch information
debruine committed Jan 11, 2024
1 parent c761a5e commit 7bbb4ac
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
35 changes: 22 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link href="index_files/libs/quarto-html/light-border.css" rel="stylesheet">
<link href="index_files/libs/quarto-html/quarto-html.min.css" rel="stylesheet" data-mode="light">
<link href="index_files/libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="stylesheet" id="quarto-text-highlighting-styles"><meta charset="utf-8">
<meta name="generator" content="quarto-1.3.433">
<meta name="generator" content="quarto-1.3.450">

<meta name="author" content="Sean Westwood, Tobias Thejll-Madsen &amp; Lisa DeBruine">
<title>PsyTeachR Teaching case studies from Glasgow</title>
Expand Down Expand Up @@ -678,8 +678,8 @@ <h2>Mean Function: Testing</h2>
<div class="sourceCode cell-code" id="cb9"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb9-1"><a href="#cb9-1"></a>test_data <span class="ot">&lt;-</span> <span class="fu">rnorm</span>(<span class="at">n =</span> <span class="dv">10</span>, <span class="at">mean =</span> <span class="dv">0</span>, <span class="at">sd =</span> <span class="dv">1</span>)</span>
<span id="cb9-2"><a href="#cb9-2"></a>test_data</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] 0.68173536 -0.84543934 0.35907309 0.52184216 0.01519784 0.47908986
[7] -1.22160640 1.86377294 2.44386392 -0.47143977</code></pre>
<pre><code> [1] 2.1320471 1.4507008 0.7195198 -0.9554218 0.9512861 0.5087931
[7] 1.0677031 0.6907823 -1.2209821 -0.8583359</code></pre>
</div>
</div>
</div>
Expand All @@ -697,7 +697,7 @@ <h2>Mean Function: Testing</h2>
<div class="sourceCode cell-code" id="cb11"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb11-1"><a href="#cb11-1"></a><span class="co"># print the mean that our function calculates</span></span>
<span id="cb11-2"><a href="#cb11-2"></a><span class="fu">mean_function</span>(test_data)</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] 0.382609</code></pre>
<pre><code>[1] 0.4486092</code></pre>
</div>
</div>
</div>
Expand All @@ -706,7 +706,7 @@ <h2>Mean Function: Testing</h2>
<div class="sourceCode cell-code" id="cb13"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb13-1"><a href="#cb13-1"></a><span class="co"># print the mean that the base R function calculates</span></span>
<span id="cb13-2"><a href="#cb13-2"></a><span class="fu">mean</span>(test_data)</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] 0.382609</code></pre>
<pre><code>[1] 0.4486092</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -972,7 +972,7 @@ <h2>Variance Function: Testing</h2>
<div class="sourceCode cell-code" id="cb25"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb25-1"><a href="#cb25-1"></a><span class="co"># print the variance that our function calculates</span></span>
<span id="cb25-2"><a href="#cb25-2"></a><span class="fu">var_function</span>(test_data)</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.278594</code></pre>
<pre><code>[1] 1.230746</code></pre>
</div>
</div>
</div>
Expand All @@ -981,7 +981,7 @@ <h2>Variance Function: Testing</h2>
<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 href="#cb27-1"></a><span class="co"># print the variance that the base R function calculates</span></span>
<span id="cb27-2"><a href="#cb27-2"></a><span class="fu">var</span>(test_data)</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.278594</code></pre>
<pre><code>[1] 1.230746</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1206,8 +1206,8 @@ <h2 data-id="quarto-animate-title">A familiar scenario</h2>
<pre><code># A tibble: 2 × 2
Group ReactionT
&lt;chr&gt; &lt;dbl&gt;
1 G1 487.
2 G1 517.</code></pre>
1 G1 650.
2 G1 404.</code></pre>
</div>
</div>
</section>
Expand Down Expand Up @@ -1300,13 +1300,13 @@ <h2>Introduce errors just like you introduce a function</h2>
Welch Two Sample t-test

data: ReactionT by Group
t = -0.7605, df = 17.04, p-value = 0.4573
t = 0.024675, df = 17.042, p-value = 0.9806
alternative hypothesis: true difference in means between group G1 and group G2 is not equal to 0
95 percent confidence interval:
-191.82909 90.16376
-98.86345 101.20371
sample estimates:
mean in group G1 mean in group G2
478.9221 529.7548 </code></pre>
477.7201 476.5499 </code></pre>
</div>
</div>
</section>
Expand Down Expand Up @@ -1526,6 +1526,11 @@ <h2>Takeaway</h2>
<h1>PsyTeachR</h1>

<img data-src="images/psyteachr_logo.png" class="r-stretch"></section>
<section id="embedding-data-skills-in-research-methods-education-preparing-students-for-reproducible-research" class="slide level2">
<h2>Embedding Data Skills in Research Methods Education: Preparing Students for Reproducible Research</h2>
<p>Phil McAleer, Niamh Stack, Heather Cleland Woods, Lisa DeBruine, Helena Paterson, Emily Nordmann, Carolina Kuepper-Tetzel, Dale Barr</p>
<p><a href="https://doi.org/10.31234/osf.io/hq68s">10.31234/osf.io/hq68s</a></p>
</section>
<section id="resources" class="slide level2">
<h2>Resources</h2>

Expand Down Expand Up @@ -1661,7 +1666,11 @@ <h2>R Packages</h2>
</div>
</div>
</div>
</section></section>
</section>
<section id="quarto-books" class="slide level2">
<h2>Quarto Books</h2>

<img data-src="images/hex/booktem.png" class="r-stretch quarto-figure-center"><p class="caption"><a href="https://debruine.github.io/booktem/">booktem</a></p></section></section>
<section id="thank-you" class="title-slide slide level1 center">
<h1>Thank You!</h1>
<p><a href="https://psyteachr.github.io/ews24/">psyteachr.github.io/ews24</a></p>
Expand Down
9 changes: 9 additions & 0 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,12 @@ mean_function(test_chr)

![](images/psyteachr_logo.png)

## Embedding Data Skills in Research Methods Education: Preparing Students for Reproducible Research

Phil McAleer, Niamh Stack, Heather Cleland Woods, Lisa DeBruine, Helena Paterson, Emily Nordmann, Carolina Kuepper-Tetzel, Dale Barr

[10.31234/osf.io/hq68s](https://doi.org/10.31234/osf.io/hq68s)

## Resources

![[psyteachr.github.io](https://psyteachr.github.io/)](images/resources.png)
Expand Down Expand Up @@ -1102,6 +1108,9 @@ mean_function(test_chr)
![[glossary](https://debruine.github.io/glossary/)](images/hex/glossary-pkg.png)
:::

## Quarto Books

![[booktem](https://debruine.github.io/booktem/)](images/hex/booktem.png)

# Thank You!

Expand Down

0 comments on commit 7bbb4ac

Please sign in to comment.