Logical; if TRUE runs the corresponding test after data
extraction, Default: TRUE
...
Additional arguments that could be passed to the test of choice
Value
Input for other functions.
Details
Raw data is entered in a wide format tibble/data frame similar to
Howells data set. The first two columns contain sex Sex (M for
male and F for female) (Default: 1) and populations' names Pop
(Default: 2). Starting from firstX column (Default: 3), measured
parameters are entered each in a separate column.
# NOT RUN {# for multivariate testlibrary(TestDimorph)
extract_sum(Howells,test=4)
# for univariate test on a specific parameterlibrary(TestDimorph)
extract_sum(Howells, test = 2,firstX = 4)
# }