Skip to content

Commit

Permalink
L2L score matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
heike committed May 29, 2024
1 parent c65e8e8 commit 1f657c2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,10 @@ server <- function(input, output, session) {
scale_colour_manual(values = c("black", "black")) +
geom_tile(size = 1, data = features %>% filter(samesource)) +
geom_text(aes(label = round(rfscore, 2)),size=6) +
xlab(paste0("Land Name","(Bullet ",features$bulletA[1],")")) +
ylab(paste0("Land Name","(Bullet ",features$bulletB[1],")")) +
xlab(sprintf("Lands on %s", features$bulletA[1])) +
ylab(sprintf("Lands on %s", features$bulletB[1])) +
ggtitle("Land-to-Land Score Matrix",
subtitle=sprintf("Bullet: %s vs %s", features$bulletA[1], features$bulletB[1])) +
guides(colour="none") +
coord_equal()+
theme(
Expand Down

0 comments on commit 1f657c2

Please sign in to comment.