compareGroups(DF, plots = TRUE, xyTopLeft = TRUE,
ABalt = c('two.sided', 'less', 'greater'),
Walt = c('two.sided', 'less', 'greater'),
conversion = 'm2cm')
Series
(a factor
), Distance
, Aim.X
, Aim.Y
defining point of aim, Point.X
, and Point.Y
getMOA
.Group
variable identifies groups just within one file, whereas factor Series
is taken to number groups also across different original files. If you only have one original file, you can just copy variable Groups
to Series
in your data frame.
In addition to the numerical results listed below, this function produces the following diagrams:
combineData
,
analyzeGroup
,
getDistToCtr
,
getMaxPairDist
,
getMinBBox
,
getMinCircle
,
getCEP
,
getMOA
,
drawEllipse
,
anova.mlm
,
ansari_test
,
fligner_test
,
wilcox_test
,
kruskal_test
data(DFinch)
# select only first 2 series
DFsub <- subset(DFinch, Series %in% 2:3)
cmp <- compareGroups(DFsub, conversion='yd2in')
names(cmp)
cmp$ctr
cmp$meanDistToCtr
cmp$CEPrand
cmp$Wilcoxon
Run the code above in your browser using DataLab