Skip to content

Commit

Permalink
adding exercise solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Caballero committed Apr 22, 2024
1 parent 5971eff commit 0cf869d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmd/09_DataVisualization.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Create a new histogram for another sample values but in log2 scale

```{r}
#| echo: true
hist_plot = ggplot(rna, aes(x = log2(GSM2545336 + 1))
hist_plot = ggplot(rna, aes(x = log2(GSM2545336 + 1)))
hist_plot + geom_histogram(bins = 100, color = 'blue')
```
Expand Down

0 comments on commit 0cf869d

Please sign in to comment.