Skip to content

Commit

Permalink
ggplot theme settings
Browse files Browse the repository at this point in the history
  • Loading branch information
khufkens committed May 15, 2023
1 parent 8130790 commit f65eb5e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions vignettes/appeears_vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,9 @@ ggplot() +
fill = NA,
colour = "red",
lwd = 2
)
) +
theme_bw()
```

#### {terra} SpatRaster ROI
Expand Down Expand Up @@ -432,7 +432,8 @@ p <- ggplot() +
x = "",
y = ""
) +
scale_fill_viridis_c()
scale_fill_viridis_c() +
theme_bw()
p2 <- ggplot() +
geom_raster(
Expand All @@ -447,7 +448,8 @@ p2 <- ggplot() +
x = "",
y = ""
) +
scale_fill_viridis_c()
scale_fill_viridis_c() +
theme_bw()
# patchwork side by side plot
p | p2
Expand Down

0 comments on commit f65eb5e

Please sign in to comment.