Another way in which we can visualize the data in R using more clarity and detailed graphics:
df<-data.frame(Heat.Evolved =c(100, 102, 101, 98, 98, 97, 99, 101),
sd=c(SampleS,SampleS,SampleS,SampleS,SampleS, SampleS, SampleS, SampleS),
Mixture.Type=c("M1", "M2", "M3", "M4", "M5", "M6", "M7", "M8"),
Insert= c(0.0, 0.1, 0.3, 0.5, 1.0, 1.5, 1.8, 2.1))
ggplot(df, aes(x=Mixture.Type, y=Heat.Evolved, fill=Mixture.Type)) +
geom_bar(stat="identity",
colour='orange') +
geom_errorbar(aes(ymin=Heat.Evolved-sd, ymax=Heat.Evolved+sd), width=.2)
