I would like to make a chart like in this picture instead of a barplot to represent frequencies of several categorical variables. 
This is a snippet of my data for the variable of interest:
c("Mixed", "Mixed", "Administrative", "Administrative", "Biophysical",
"Biophysical", "Administrative", "Administrative", "Administrative",
"Administrative", "Administrative")
And I have produced the following code inspired by this post and despite I do not get any error message, there is no plot drawn. I restarted R several times but it does not seem to be an issue. Any help would be very much appreciated!
hnvf9 <- hnvdata %>%
select(Boundary)%>%
mutate(Boundary1 = as.factor(Boundary))%>%
count(Boundary1)%>%
mutate(pct=n/sum(n))%>%
ggplot(aes(Boundary1, pct)) +
geom_linerange(aes(x = Boundary1, ymin = 0, ymax = 100,color = "lightgray", lwd = 1)) +
geom_point(colour="red", size = 3)
This is known as a lollipop chart. You can create one in ggplot as follows