I have a csv file whose data looks like this :
A B C D E
feature1 0.6388 0.581 0.612 0.571 0.5758
feature2 0.6218 0.537 0.624 0.535 0.6235
feature3 0.5639 0.404 0.56 0.497 0.569
feature4 0.6695 0.622 0.656 0.542 0.6337
feature5 0.6252 0.532 0.625 0.523 0.6235
feature6 0.6712 0.584 0.641 0.52 0.632
where I have 6 features of 5 classes. I want to plot this as a bar chart ( x axis will have the features and y axis values from 0 to 1, and the bars would be of class A,B...). How do I do this without redundant coding?


