Top 10 universities with most students in México

library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
df<-read.csv("D:/Oscar/Documents/R/DATASETS/EducacionMexico.csv")
df<-df[with(df,order(-df$Students)),]
plot_ly(x=df$Institution[1:10],y=df$Students[1:10],type="bar")
## Warning: `arrange_()` is deprecated as of dplyr 0.7.0.
## Please use `arrange()` instead.
## See vignette('programming') for more help
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_warnings()` to see where this warning was generated.