Create labels using usmap

Hi, I am trying to make a us map with some labels per state.
The data I'm working with looks like this:
State Positive
New York 0.21
Virginia 0.52
Ohio 0.83
...and so on

The code I have is this:

Sero <- read_excel("Sero.xlsx")
View(Sero)
serop <- data.frame(sero)
plot_usmap(data = serop, values = "Positive", color = "black", exclude = c("Alaska","Hawaii")) + scale_fill_continuous(low = "yellow", high = "red", name = "SP", na.value="lightgray") + theme(panel.background=element_blank(),legend.position = "right")

And I get a really nice map, however I would like the value under the column "Positive" to display in each state, any thoughts?

Thank you!!

Hi, first of all you should provide a reproducible example as we don't have your data. Also you should note what packages you are using in the example.

Anyway, some options:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.