1280 Self Quiz UNIT 3 - these are self quizzes and are helpful when reviewing for the exam or graded PDF

Title 1280 Self Quiz UNIT 3 - these are self quizzes and are helpful when reviewing for the exam or graded
Course Introduction to Statistics
Institution University of the People
Pages 11
File Size 355.8 KB
File Type PDF
Total Downloads 51
Total Views 123

Summary

these are self quizzes and are helpful when reviewing for the exam or graded quizzes...


Description

UNIT 3 In Figure A you will find box plots for three sets of data. In Figure B are the histograms for the same sets of data, but in a different order. Associate each box plot with its relative histogram. Figure A: Figure B:

Box plot 1 Answer 1 Box plot 2 Answer 2 Box plot 3 Answer 3

Histogram b

Histogram a

Histogram c

Feedback Observe the range of distribution each data: [10,40] in Histogram a, [-40,30] in Histogram b and [14,28] in Histogram c. (You may want to increase the Plot. That can be done on many browsers with Control plus the "+" key. Or you may download the figure an open it with a graphical application.) The correct answer is: Box plot 1 – Histogram b, Box plot 2 – Histogram a, Box plot 3 – Histogram c Question 2 Correct Mark 1.00 out of 1.00 Question text Consider the box plots in Figure A. Which of the data has a smaller inter-quartile range (IQR)? Figure A Select one: a. Box plot 1 b. Box plot 2

c. Box plot 3

d. Cannot tell based on the box plots. Feedback

The hight of the central box in Box-plot 3 is the least of the three. The correct answer is: Box plot 3 Information Information text For the next 3 question deal with the following data: 11.9, 11.0, 12.4, 16.9, 16.3, 13.3, 9.1, 17.0, 11.0, 9.3, 25.3, 17.4, 17.4 Question 3 Correct Mark 1.00 out of 1.00 Question text The median is equal to: Select one: a. 9.1 b. 13.3

c. 14.8 d. Cannot tell based on the given information. Feedback Run the code: > x median(x) [1] 13.3 The correct answer is: 13.3 Question 4 Correct Mark 1.00 out of 1.00

Question text The largest value in the data is an outlier: Select one: a. True b. False

c. Cannot tell based on the given information. Feedback Run the code: > x boxplot(x) Observe, in the box plot that is created, that there are no outliers. The correct answer is: False Question 5 Correct Mark 1.00 out of 1.00 Question text The smallest value in the data is an outlier: Select one: a. True b. False

c. Cannot tell based on the given information. Feedback Run the code: > x boxplot(x) Observe, in the box plot that is created, that there are no outliers. The correct answer is: False Question 6 Correct Mark 1.00 out of 1.00 Question text Create an R data frame with the name "ex.2" that contains the data in the file "ex2.csv" (Select the file name to download it).

Compute the standard deviation of each of the numeric variables. Among the following, the variable with the largest standard deviation is:

Select one: a. age b. bmi c. systolic d. diastolic

Feedback

After saving the file in the working directory run the code: > ex.2 sd(ex.2$age) [1] 3.805571 > sd(ex.2$bmi) [1] 3.881489 > sd(ex.2$systolic) [1] 11.27262 > sd(ex.2$diastolic) [1] 11.56522 The correct answer is: diastolic Information Information text Twenty-one randomly selected students were asked the number of pairs of sneakers they owned. The number of pairs of sneakers owned by each student was recorded in an R object by the name "x". The frequency table of the data "x" is: > table(x) x

1 2 3 4 5 6 4 7 3 3 2 2 Based on this table compute: Question 7 Correct Mark 1.00 out of 1.00 Question text The sample mean ( ) is Answer:

2.904762

Feedback Run the code: > x.val freq rel.freq x.bar x.bar [1] 2.904762 The correct answer is: 2.904762 Question 8 Correct Mark 1.00 out of 1.00 Question text The sample standard deviation (s) is Answer:

1.609496

Feedback Run the code: > x.val freq rel.freq x.bar var.x sqrt(var.x) [1] 1.609496 The correct answer is: 1.609496 Question 9 Correct Mark 1.00 out of 1.00 Question text The first quartile (Q1) is

Answer:

2

Feedback Run the code: > x.val freq rel.freq data.frame(x.val,cumsum(rel.freq)) x.val cumsum.rel.freq. 1 1 0.1904762 2 2 0.5238095 3 3 0.6666667 4 4 0.8095238 5 5 0.9047619 6 6 1.0000000 Observe that more than 25% of the distribution has accumulated at value "2" but less than that at value "1". The correct answer is: 2 Question 10 Correct Mark 1.00 out of 1.00 Question text The median is Answer:

2

Feedback Run the code: > x.val freq rel.freq data.frame(x.val,cumsum(rel.freq)) x.val cumsum.rel.freq. 1 1 0.1904762 2 2 0.5238095 3 3 0.6666667 4 4 0.8095238 5 5 0.9047619 6 6 1.0000000 Observe that more than 50% of the distribution has accumulated at value "2" but less than that at value "1". The correct answer is: 2 Question 11 Correct Mark 1.00 out of 1.00 Question text The third quartile (Q3) is Answer:

4

Feedback

Run the code: > x.val freq rel.freq data.frame(x.val,cumsum(rel.freq)) x.val cumsum.rel.freq. 1 1 0.1904762 2 2 0.5238095 3 3 0.6666667 4 4 0.8095238 5 5 0.9047619 6 6 1.0000000 Observe that more than 75% of the distribution has accumulated at value "4" but less than that at value "3". The correct answer is: 4 Question 12 Correct Mark 1.00 out of 1.00 Question text The distribution is skewed to the left? (True or False) False

Answer:

Feedback Observe that the frequency of the values "1" and "2" is more than the frequency of the values "5" and "6". The correct answer is: False Question 13 Correct Mark 1.00 out of 1.00 Question text The relative frequency of the students that owned more than one but less than 5 sneakers is is Answer:

0.6190476

Feedback Compute: (7+3+3)/(4+7+3+3+2+2) = 0.6190476 The correct answer is: 0.6190476 Information Information text Following are the possible weights (in pounds) of some football team members. 232, 251, 257, 268, 238, 222, 265, 263, 252, 246, 253, 248, 256, 248, 230, 219, 224, 267, 259, 254, 254, 261, 248, 221, 252, 269, 269, 273, 273, 259, 251, 222, 248, 224

Question 14 Correct Mark 1.00 out of 1.00 Question text The sample mean ( ) is Answer:

249.2941

Feedback Run the code: > x mean(x) [1] 249.2941 The correct answer is: 249.2941 Question 15 Correct Mark 1.00 out of 1.00 Question text The sample standard deviation (s) is Answer:

16.34019

Feedback Run the code: > x sd(x) [1] 16.34019 The correct answer is: 16.34019 Question 16 Correct Mark 1.00 out of 1.00 Question text The first quartile (Q1) is

Answer:

240

Feedback Run the code: > x summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. 219.0 240.0 252.0 249.3 260.5 273.0 The correct answer is: 240 Question 17 Correct Mark 1.00 out of 1.00 Question text The median is Answer:

252

Feedback Run the code: > x summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. 219.0 240.0 252.0 249.3 260.5 273.0 The correct answer is: 252 Question 18 Correct Mark 1.00 out of 1.00 Question text The third quartile (Q3) is Answer:

260.5

Feedback

Run the code: > x summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. 219.0 240.0 252.0 249.3 260.5 273.0 The correct answer is: 260.5 Question 19 Correct Mark 1.00 out of 1.00 Question text The USC quarterback Matt Barkley weighed 220 pounds in the spring of 2010. How many standard deviations above or below the mean was he in comparison to the data given above? (Give the answer in the format x.xxx, without the plus/minus sign) Answer:

1.792765

Feedback Observe that: (220 - 249.294)/16.340 = -1.792778 The correct answer is: 1.792765 Question 20 Correct Mark 1.00 out of 1.00 Question text The following frequency table shows the lengths of 42 international phone calls using a $5 prepaid calling card. The data was stored in an object by the name "x": x 4 14 24 34 44 54 2 6 13 13 6 2 Using the data, and without computing the mean and the median, determine which ONE of the answers is correct: Select one: a. The mean and the median are equal.

b. The mean is smaller than the median. c. The mean is larger than the median. Feedback

Observe that the distribution is symmetric. The values are equally spaced and the frequencies evenly distibuted. The correct answer is: The mean and the median are equal. Question 21 Correct Mark 1.00 out of 1.00 Question text Consider the following data set: 4, 6, 6, 12, 18, 18, 18, 200. What value is (approximately) 0.75 standard deviations below the mean? Select one: a. There is not enough information b. Approximately -15

c. Approximately 4 d. Approximately 34.5 Feedback Consider the code: > x mean(x) - 0.75*sd(x) [1] -14.87231 The correct answer is: Approximately -15...


Similar Free PDFs