Skip to content

Commit

Permalink
omics 1 workshop fix file name
Browse files Browse the repository at this point in the history
  • Loading branch information
3mmaRand committed Oct 6, 2023
1 parent 6209a87 commit 409ab8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions omics/week-3/workshop.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ s30 |>
```

This data is very skewed - there are so many low values that we can't
see the the tiny bars for the higher values. Logging the counts is a way
see the tiny bars for the higher values. Logging the counts is a way
to make the distribution more visible.

🎬 Repeat the plot on log of the counts.
Expand Down Expand Up @@ -328,11 +328,11 @@ s30_summary_samp <- s30 |>

We can write to file using `write_csv()`

🎬 Write `s30_summary_samp_by` to a file called
"s30_summary_samp_by.csv":
🎬 Write `s30_summary_samp` to a file called
"s30_summary_samp.csv":

```{r}
write_csv(s30_summary_samp_by, file = "data-processed/s30_summary_samp_by.csv")
write_csv(s30_summary_samp, file = "data-processed/s30_summary_samp.csv")
```

Plotting the distribution of values is perhaps the easiest way to
Expand Down

0 comments on commit 409ab8d

Please sign in to comment.