I am trying to get a list sorted by frequency from a data frame.
data <- read.csv('ads.csv') write.table(summary(data$Publication.Name), quote = FALSE, sep = ",")
I'm not sure if summary () is really the best way to get frequencies, I'm open to a better way. How can I sort this by frequency first?
source share