Sie sind auf Seite 1von 6

Feedback Week 2Help

You submitted this quiz on Sat 19 Oct 2013 2:21 AM COT (UTC -0500). You got a score of 8.00 out of 10.00. You can attempt again, if you'd like.
Working memory training is a rapidly growing market with potential to further expand in the future. Several computerized software programs promoting cognitive improvements have been developed in recent years, with controversial results and implications. In a distinct literature, aerobic exercise has been shown to broadly enhance cognitive functions, in humans and animals. We are attempting to bring together these two trends of research, leading to an emerging third approach: designed sports training. Specifically designed sports wrestling, fencing, martial arts which tax working memory by incorporating motion in three-dimensional space, are an optimal way to combine the benefits of traditional cognitive training and aerobic exercise into a single activity. Then, write an R script to answer the following questions, based on simulated data available here. All answers should be rounded to 2 significant digits.

Question 1
How many rows of data are in the data file? Answer for Question 1 You entered:

Your Answer 96 Total


Question Explanation

Score Correct 1.00 1.00 / 1.00

Explanation

Make sure you read the data with the argument: header=TRUE Then: nrow(data) OR dim(data)

Question 2
What is the name of the dependent variable? Answer for Question 2 You entered:

Your Answer "condition" Total


Question Explanation names(data)

Score Incorrect 0.00 0.00 / 1.00

Explanation

Question 3
What is the mean of SR across all subjects? Answer for Question 3 You entered:

Your Answer 12.66 Total


Question Explanation mean(data$SR) OR describe(data)

Score Correct 1.00 1.00 / 1.00

Explanation

Question 4
What is the variance of SR across all subjects? Answer for Question 4 You entered:

Your Answer 6.54 Correct

Score 1.00

Explanation

Total
Question Explanation var(data$SR) OR 2.56^2

1.00 / 1.00

Question 5
What is the mean of SR for all subjects at pretest? Answer for Question 5 You entered:

Your Answer 12.02 Total


Question Explanation pre = subset(data, data$time=="pre") THEN mean(pre$SR)

Score Correct 1.00 1.00 / 1.00

Explanation

Question 6
What is the standard deviation of SR for all subjects at posttest? Answer for Question 6 You entered:

Your Answer 2.45 Total


Question Explanation post = subset(data, data$time=="post") THEN sd(post$SR)

Score Correct 1.00 1.00 / 1.00

Explanation

Question 7
What is the median of SR for all subjects at posttest? Answer for Question 7 You entered:

Your Answer 13.5 Total


Question Explanation describe(post$SR) AND median(post$SR)

Score Correct 1.00 1.00 / 1.00

Explanation

Question 8
Which group has the highest mean at posttest? Answer for Question 8 You entered:

Your Answer DS Total


Question Explanation describeBy(post, post$condition)

Score Correct 1.00 1.00 / 1.00

Explanation

Question 9
Which one best approximates a normal distribution?

Your Answer

Score

Explanation

WM group at pretest Correct 1.00

WM group at postest

PE group at pretest

PE group at posttest

DS group at pretest

DS group at postest Total


Question Explanation pre.wm = subset(pre, pre$condition=="WM") AND post.wm = subset(post, post$condition=="WM") AND pre.pe = subset(pre, pre$condition=="PE") AND post.pe = subset(post, post$condition=="PE") AND pre.ds = subset(pre, pre$condition=="DS") AND post.ds = subset(post, post$condition=="DS") AND hist(pre.wm) AND hist(post.wm) AND hist(pre.pe) AND hist(post.pe) AND hist(pre.ds) AND hist(post.ds)

1.00 / 1.00

Question 10
Which group showed the biggest gains in SR? Answer for Question 10 You entered:

Your Answer PE group at posttest Total Incorrect

Score 0.00 0.00 / 1.00

Explanation

Question Explanation pre.wm = subset(pre, pre$condition=="WM") AND post.wm = subset(post, post$condition=="WM") AND pre.pe = subset(pre, pre$condition=="PE") AND post.pe = subset(post, post$condition=="PE") AND pre.ds = subset(pre, pre$condition=="DS") AND post.ds = subset(post, post$condition=="DS") AND mean(post.wm$SR)-mean(pre.wm$SR) AND mean(post.pe$SR)mean(pre.pe$SR) AND mean(post.ds$SR)-mean(pre.ds$SR)

Das könnte Ihnen auch gefallen