I have a bar chart, where the X axis has the city and the Y axis has the automatically determined count of the cities appearing in the data.
bigger_data <- read.csv(file.choose()) ## public_record_2_xlax
bigger_data <- drop_na(bigger_data)
bigger_data %>% arrange(Total.Value) %>%
ggplot(aes(x=City)) +
geom_bar()
Is there any way to access the value of the count variable on the Y-axis?