Skip to content

Commit 34886a1

Browse files
committed
Use geom_tile() due to tidyverse/ggplot2#1707
1 parent a538334 commit 34886a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/plotting.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ plot_dense_matrix <- function(A, ...) {
6363
long <- dplyr::mutate_all(long, as.numeric)
6464

6565
ggplot(long, aes(x = col, y = row, fill = value)) +
66-
geom_raster() +
66+
geom_tile() +
6767
scale_y_reverse() +
6868
theme_minimal() +
6969
labs(

0 commit comments

Comments
 (0)