I'm trying to accomplish a pretty simple task but I am really struggling to achieve what I want. I created a csv file for my data set and am now trying to import it into R and create a barplot from it. This is what the data set looks like.
| control | salted | unsalted |
|---|---|---|
| 3 | 12 | 23 |
| 7 | 15 | 25 |
| 4 | 13 | 20 |
| 2 | 17 | 18 |
From this, I want to create an error bar chart but I can't figure out how to make it work. I don't think I should need a package for this but am I mistaken?
This is an example of what I want to do.
As I said, it's pretty simple but I've reached the point where I have to throw in the towel and accept that I won't manage it on my own. Any and all advice welcome! Thank you

