My data looks like this:
> str(bigrams_joined)
Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 71319 obs. of 2 variables:
$ line : int 1 1 1 1 1 1 1 1 1 1 ...
$ bigrams: chr "in practice" "practice risk" "risk management" "management is"
I would like to plot the top 10 or 15 most frequently occurring bigrams in my dataset to a bar chart in ggplot2 and have the bars running horizontally with the labels on the y-axis.
Any help with this is greatly appreciated!
Thank you