Añadida explicación sobre añadir color al ggheatmap.

This commit is contained in:
2022-02-12 11:33:58 +01:00
parent d49b1b2226
commit 05da9ac572
+5
View File
@@ -88,6 +88,11 @@ By default, *other variables not used are eliminated* during the grouping proces
ggheatmap(df, exclude_group = "Met")+facet_grid(.~Met, scales = "free") ggheatmap(df, exclude_group = "Met")+facet_grid(.~Met, scales = "free")
``` ```
You can specify a color instead of being transparent to the tiles:
```{r, fig.width=8}
ggheatmap(df, color="black")
```
Finally, you can scale the heatmap either by rows or by columns: Finally, you can scale the heatmap either by rows or by columns:
```{r, fig.width=8} ```{r, fig.width=8}