I have a dataset of 3 columns (library, its methods, the number of how many times a method is called)
I created the following bars using ggbarplot
function, where each bar represent one method, the x-axis is the library name and the y-axis the frequency of method calls.
However, with some libraries there are so many methods making the bar chart looks unpretty, I have tried to stack the bars, but still looks confusing. is there any alternative way for e.g. grouping the data? only representing median of calls? types of representation other than bars, I am new to R and really want to know the alternative.