I have this dataset (https://www.dropbox.com/s/c1e81dzquv2j10j/day.csv?dl=0). I need to plot a grouped bar graph of the mean and the standard deviation of variable 'cnt', but these values should be grouped by the variable 'season'. I loaded the file from CSV as follows:
data <- read.csv(file="/Users/rafaame/Downloads/Bike-Sharing-Dataset/day.csv",header=TRUE,sep=",")
How would you plot it? Thanks.