I have a dataframe that has indicators as values of a column
X Y Ind
1 10000 N
2 10000 N
3 10000 G
4 10000 L
I want to create a bargraph using ggplot that will give me the Total Count and Total Y based on Indicator Value side by side . I am trying to figure out how to implement an aggregation on the dataframe without summarizing it and creating a Count value per categorical value of Ind
Updated: This