Skip to content

Commit

Permalink
attempt to fix ijtiff issue
Browse files Browse the repository at this point in the history
  • Loading branch information
3mmaRand committed Oct 5, 2023
1 parent 1e8e5bd commit 6209a87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quarto-gh-pages-html.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libharfbuzz-dev
sudo apt-get install -y libfribidi-dev
sudo apt-get -y install libwebp-dev
- uses: r-lib/actions/setup-renv@v2
Expand Down
17 changes: 3 additions & 14 deletions core/week-2/workshop.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ In this workshop you will

[control_merged.tif](data/control_merged.tif)

```{r}
```r
library(ijtiff)
img <- read_tif("data/control_merged.tif")
```
```{r}
```r
img
```

Expand All @@ -54,7 +54,7 @@ img

- we might normally call this a multi-dimensional array: x and y coordinates of the pixels are 2 dimensions, the channel is the third dimension and time is the forth dimension

```{r}
```r
display(img)
```

Expand Down Expand Up @@ -302,18 +302,7 @@ You're finished!

[Consolidate](study_after_workshop.qmd)

# The Code file

These contain all the code needed in the workshop even where it is not
visible on the webpage.

The [workshop.qmd](workshop.qmd) file is the file I use to compile the
practical. Qmd stands for Quarto markdown. It allows code and ordinary
text to be interleaved to produce well-formatted reports including
webpages. Right-click on the link and choose Save-As to download. You
will be able to open the Qmd file in RStudio. Alternatively, [View in
Browser](https://github.com/3mmaRand/). Coding and thinking answers are
marked with `#---CODING ANSWER---` and `#---THINKING ANSWER---`

Pages made with R [@R-core], Quarto [@allaire2022], `knitr` [@knitr],
`kableExtra` [@kableExtra]
Expand Down

0 comments on commit 6209a87

Please sign in to comment.