scores = read.csv("drp.csv")
head(scores)
t.test(scores$DRP~scores$Group,var.equal=T,conf.level=0.95)
# box-and-whisker plots make it easy to spot outliers.
boxplot(scores$DRP~scores$Group)
# The split command lets you split the values of one variable by another. This is useful if you want QQ-plots or histograms of the separated data.
groupscores = split(scores$DRP,scores$Group)
groupscores$Control
qqnorm(groupscores$Control)