Analyze Two Data-Sets
For this assignment, we were tasked to compute statistics on two different data-sets. The two data-sets are as follows:
Central Tendency (mean, median, and mode)
The first computation on the data-sets was to find the mean, median, and mode.
R Code Results
The results (and full R script) is as follows:
Results
The results for each data-set is as follow:
Set 1:
Mean: 4
Median: 3
Mode: 2
Set 2:
Mean: 14
Median: 13
Mode: 12
Variance (range, interquartile range, variance, and standard deviation)
The second compuation on the data-sets was to find the range, interquartile range, variance, and standard deviation.
R Code Results
Results
The results for each data-set is as follow:
Set 1:
Range: 2, 10
Interquartile Range: 2.5
Variance: 8.333333
Standard Deviation: .886751
Set 2:
Range: 12, 20
Interquartile Range: 2.5
Variance: 8.333333
Standard Deviation: .886751
Conclusion
Despite the difference in the two data-sets central tendencies, both data-sets have identical measures of variation. This means that while the values in Set #2 are higher than those in Set #1, the spread in both sets is identical.