Consider the magic matrix:
A = np.array([[17, 24, 1, 8, 15],
[23,
5, 7, 14, 16],...
Consider the magic matrix:
A = np.array([[17, 24, 1, 8, 15],
[23,
5, 7, 14, 16],
[
4, 6, 13, 20, 22],
[10,
12, 19, 21, 3],
[11,
18, 25, 2, 9]])
The matrix A has 5 row sums (one for each row), 5 column
sums (one for each column) and two diagonal sums. These 12 sums
should all be exactly the same. Verify that they are the same by
printing them and “seeing” that they are the same.
Problem #3
1) Conduct a related-sample t-test using the following data set.
Each row represents a...
Problem #3
1) Conduct a related-sample t-test using the following data set.
Each row represents a pair of scores.
A: 18, 35, 31, 30, 40, 25, 11, 30, 28, 20
B: 4, 40, 13, 18, 30, 27, 17, 18, 12, 20
-
2) Determine the critical values (for an alpha of .05) that you
should use to evaluate this t-score.
-
3) Compute r2 for this t-test.