Hi
I'm not entirely sure what you're trying to plot, could you be looking for geom_col()?
Here's an attempt, let me know if this isn't what you were trying to do. Note: you don't need position = "dodge" when you're going to facet_wrap at the end anyway.
On a side note, its easier to get help (and to help) if you provide a reprex.
Actually, I wanted to plot the same but, the bar plot should be in one single chart side by side, for each subject. I am able to plot stacked bar charts but not multi bar chart("Clustered Column " in words of Excel).
Thank You, needed something like this. Just, out of curiosity, is it possible to merge all the subjects into one chart.
i.e. x axis will contain subjects, y axis values and colour will be the variables(TA,TC,TQ).
You can do it easily with ggplot since you have mapped it. It is basicly like @bragks' solution, except that you don't need coord_flip() and facet_wrap().
If I do that the single chart plotted is giving the sum of Questions for all the subject. and all subjects are taken as one. The values are summed for all the subjects w.r.t TQ,TA,TC. But, what is needed is plotting TQ,TA & TC for all subjects, in one axis (similar to excel chart).
Could you please turn this into a self-contained reprex (short for reproducible example)? It will help us help you if we can be sure we're all working with/looking at the same stuff.
If you run into problems with access to your clipboard, you can specify an outfile for the reprex, and then copy and paste the contents into the forum.