Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

and again #3

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions core/week-1/workshop.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ organise your work to make it reproducible. We will cover:
similar results and same conclusions. The findings can be
generalised

[![The Turing Way\'s definitions of reproducible research
[@community2022]](images/reproducible-matrix.jpg){fig-alt="Two by Two cell matrix. Columns are Data, either same or different. Rows are Analysis either same or different. Each of cells contain one of the definitions for reproducibility"}](https://the-turing-way.netlify.app/reproducible-research/overview/overview-definitions#rr-overview-definitions)
[![The Turing Way\'s definitions of reproducible
research](images/reproducible-matrix.jpg){fig-alt="Two by Two cell matrix. Columns are Data, either same or different. Rows are Analysis either same or different. Each of cells contain one of the definitions for reproducibility"}](https://the-turing-way.netlify.app/reproducible-research/overview/overview-definitions#rr-overview-definitions)

## Why does it matter?

Expand Down Expand Up @@ -180,18 +180,21 @@ Bullet points are good
There are packages that give session information in R @sessioninfo
and Python @ostblomjoel2019

```{r}
R:

```
#| eval: false
sessioninfo::session_info()
```

```{python}
Python:

```
#| eval: false
import session_info
session_info.show()

```

- Instructions run the code, build reports, and reproduce the figures
etc

Expand Down
Loading