Skip to content
Open
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
5 changes: 3 additions & 2 deletions 05-damr.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,10 @@ We can use `ggetho` for that, for example the following code will create an acti
```{r, fig.width = 9, fig.height=16}
library(ggetho)
# I only show fisrt replicate
ggetho(dt[xmv(replicate) == 1 ], aes(z=activity)) +
ggetho(dt[xmv(replicate) == 1 ], aes(z =activity)) +
stat_tile_etho() +
stat_ld_annotations()
stat_ld_annotations() +
scale_colour_gradient(direction = -1)
```


Expand Down