Skip to content

Commit 889fc51

Browse files
committed
Post update
1 parent a03cc14 commit 889fc51

16 files changed

+962
-816
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The course emphasizes critical thinking and active learning through hands on pro
1212

1313
The expected outcome of the course is a solid foundation for further professional development via increased confidence in applying these methods for field observations.
1414

15+
![Qpad overview](https://github.com/psolymos/qpad-workshop/raw/main/images/qpad-sketch.jpg)
16+
1517
## Instructor
1618

1719
[**Dr. Peter Solymos**](https://peter.solymos.org) \
@@ -20,8 +22,6 @@ The expected outcome of the course is a solid foundation for further professiona
2022

2123
## Outline
2224

23-
> Note: this outline is preliminary and subject to change.
24-
2525
Each day will consist of 3 sessions, roughly one hour each, with short breaks in between.
2626

2727
| Session | Topic | Files |
@@ -42,7 +42,7 @@ Each day will consist of 3 sessions, roughly one hour each, with short breaks in
4242
| | 1. QPAD review | [Slides](https://peter.solymos.org/qpad-workshop/day4-1-intro.pdf) |
4343
| | 2. Detectability offsets | [Notes](https://peter.solymos.org/qpad-workshop/day4-2-offsets.html) |
4444
| | 3. Recordings | [Notes](https://peter.solymos.org/qpad-workshop/day4-3-recordings.html) |
45-
| | 4. Closing remarks | See slides |
45+
| | 4. Closing remarks | |
4646

4747

4848
## Before the course
@@ -93,7 +93,6 @@ qpad_local(day=1)
9393

9494
LOCAL copies will not be tracked and overwritten by git.
9595

96-
9796
## After the course
9897

9998
Expect some follow up :)

day3-2-detection.Rmd

+4
Original file line numberDiff line numberDiff line change
@@ -727,3 +727,7 @@ res
727727
plot(diff ~ count, res)
728728
abline(h=0, lty=2)
729729
```
730+
731+
Think about how you'd do leave-one-out cross-validation.
732+
733+
Think about how you would include `HAB` effects on $\tau$ (hint: main effect and interactions).

docs/day1-1-intro.pdf

0 Bytes
Binary file not shown.

docs/day1-2-data-processing.html

+161-110
Large diffs are not rendered by default.

docs/day1-3-regression.html

+377-252
Large diffs are not rendered by default.

docs/day2-1-intro.pdf

118 Bytes
Binary file not shown.

docs/day2-2-behavior.html

+3-37
Original file line numberDiff line numberDiff line change
@@ -375,43 +375,9 @@ <h2>Prerequisites</h2>
375375
<pre class="r"><code>## update bSims - some issues fixed
376376
#remotes::install_github(&quot;psolymos/bSims&quot;)
377377

378-
library(bSims) # simulations</code></pre>
379-
<pre><code>## Loading required package: intrval</code></pre>
380-
<pre><code>## Loading required package: mefa4</code></pre>
381-
<pre><code>## Loading required package: Matrix</code></pre>
382-
<pre><code>## mefa4 0.3-7 2020-02-28</code></pre>
383-
<pre><code>##
384-
## Attaching package: &#39;mefa4&#39;</code></pre>
385-
<pre><code>## The following object is masked from &#39;package:intrval&#39;:
386-
##
387-
## %notin%</code></pre>
388-
<pre><code>## Loading required package: MASS</code></pre>
389-
<pre><code>## Loading required package: deldir</code></pre>
390-
<pre><code>## deldir 0.2-9 Nickname: &quot;Morpheus and Euripides&quot;</code></pre>
391-
<pre><code>##
392-
## Note 1: As of version 0.2-1, error handling in this
393-
## package was amended to conform to the usual R protocol.
394-
## The deldir() function now actually throws an error
395-
## when one occurs, rather than displaying an error number
396-
## and returning a NULL.
397-
##
398-
## Note 2: As of version 0.1-29 the arguments &quot;col&quot;
399-
## and &quot;lty&quot; of plot.deldir() had their names changed to
400-
## &quot;cmpnt_col&quot; and &quot;cmpnt_lty&quot; respectively basically
401-
## to allow &quot;col&quot; and and &quot;lty&quot; to be passed as &quot;...&quot;
402-
## arguments.
403-
##
404-
## Note 3: As of version 0.1-29 the &quot;plotit&quot; argument
405-
## of deldir() was changed to (simply) &quot;plot&quot;.
406-
##
407-
## See the help for deldir() and plot.deldir().</code></pre>
408-
<pre><code>## bSims 0.2-3 2021-03-15 kicky-chew</code></pre>
409-
<pre class="r"><code>library(detect) # multinomial models</code></pre>
410-
<pre><code>## Loading required package: Formula</code></pre>
411-
<pre><code>## Loading required package: stats4</code></pre>
412-
<pre><code>## Loading required package: pbapply</code></pre>
413-
<pre><code>## detect 0.4-4 2020-08-12</code></pre>
414-
<pre class="r"><code>load(&quot;data/josm-data.rda&quot;) # JOSM data
378+
library(bSims) # simulations
379+
library(detect) # multinomial models
380+
load(&quot;data/josm-data.rda&quot;) # JOSM data
415381
set.seed(1)</code></pre>
416382
<p>Just spend a bit of time admiring the package startup messages…</p>
417383
</div>

docs/day2-3-removal.html

+21-45
Large diffs are not rendered by default.

docs/day2-4-mixtures.html

+51-61
Large diffs are not rendered by default.

docs/day3-1-intro.pdf

-15 Bytes
Binary file not shown.

docs/day3-2-detection.html

+93-83
Large diffs are not rendered by default.

docs/day4-1-intro.pdf

47 Bytes
Binary file not shown.

docs/day4-2-qpad.html

+82-108
Large diffs are not rendered by default.

docs/day4-3-recordings.html

+149-116
Large diffs are not rendered by default.

images/qpad-sketch.jpg

1.79 MB
Loading

src/tests.R

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## rendering all markdown
2+
3+
library(rmarkdown)
4+
5+
fl <- list.files(".", ".Rmd")
6+
7+
for (i in seq_along(f)) {
8+
cat(fl[i], "\n")
9+
flush.console()
10+
o <- rmarkdown::render(input=fl[i], quiet=TRUE)
11+
z <- rev(strsplit(o, "/")[[1]])[1]
12+
file.copy(
13+
from=o,
14+
to=paste0("docs/", z),
15+
overwrite=TRUE
16+
)
17+
unlink(o)
18+
}

0 commit comments

Comments
 (0)