The code I'm working on:
ggplot(data = equiposUTNFRSR,
aes(x=...5, fill = as.factor(...5)))+
geom_bar()+
xlab("Provincias")+
ylab("cantidad de veces que se repite")+
ggtitle("Inscriptos en la Tecnicatura, prueba 2")+
labs(fill = "Columna 4")+theme_minimal()+
theme(axis.text.x = element_text(angle = 30, hjust = 1, vjust=1, size = 10))
The outcome:
I want to paint with color, only 2 bars. The highest one (cyan color), and the one that follows (the salmon-red one), and turn the rest into gray colors... Is this possible in RStudio with Ggplot2?...
And lastly.... Is it possible to write the name of the highest variable on the cyan bar? to express which name is the highest?