Answer To: Q1: Descriptive statistics and two-group comparisons (25 marks)You are a software product...
Robert answered on Dec 20 2021
The sample values for 12 coders are:
67, 62, 46, 45, 54, 44, 52, 80, 60, 48, 40, and 53
Measures of central tendency:
Mean , median , mode
R commands:
X <- c(67, 62, 46, 45, 54, 44, 52, 80, 60, 48, 40,53)
> mean(X)
*1+ 54.25………………..(Mean)
For Median
> median(X)
[1] 52.5
For Mode:
> table(X)
X
40 44 45 46 48 52 53 54 60 62 67 80
1 1 1 1 1 1 1 1 1 1 1 1
> which(table(x)==max(table(x)))
7.8886090522101e-31
1
Thus no Mode exists.
Measures of Variation
> range(X)
[1] 40 80
> var(X)
[1] 129.6591
sd(X)
[1] 11.38679
Ii )
Using formulas
Mean= sum of values/ total number of values = 651/12=54.25
Median =We arrange in...