I'm 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 summary() is really the best way to get frequencies, I'm open to a better way. How can I sort this by most frequent first?