Question

In: Math

A professor has recently taught two sections of the same course with only one difference between...

A professor has recently taught two sections of the same course with only one difference between the sections. In one section, he used only examples taken from sports applications, and in the other section, he used examples taken from a variety of application areas. The sports themed section was advertised as such; so students knew which type of section they were enrolling in. The professor has asked you to compare student performance in the two sections using course grades and total points earned in the course. You will need to import the Scores.csv dataset that has been provided for you:

Count Score Section
10 200 Sports
10 205 Sports
20 235 Sports
10 240 Sports
10 250 Sports
10 265 Regular
10 275 Regular
30 285 Sports
10 295 Regular
10 300 Regular
20 300 Sports
10 305 Sports
10 305 Regular
10 310 Regular
10 310 Sports
20 320 Regular
10 305 Regular
10 315 Sports
20 320 Regular
10 325 Regular
10 325 Sports
20 330 Regular
10 330 Sports
30 335 Sports
10 335 Regular
20 340 Regular
10 340 Sports
30 350 Regular
20 360 Regular
10 360 Sports
20 365 Regular
20 365 Sports
10 370 Sports
10 370 Regular
20 375 Regular
10 375 Sports
20 380 Regular
10 395 Sports

Use the appropriate R functions to answer the following questions:

1. What are the observational units in this study?

2. Identify the variables mentioned in the narrative paragraph and determine which are categorical and quantitative?

3. Create one variable to hold a subset of your data set that contains only the Regular Section and one variable for the Sports Section.

4. Use the Plot function to plot each Sections scores and the number of students achieving that score. Use additional Plot Arguments to label the graph and give each axis an appropriate label. Once you have produced your Plots answer the following questions:

a. Comparing and contrasting the point distributions between the two section, looking at both tendency and consistency: Can you say that one section tended to score more points than the other? Justify and explain your answer.

b. Did every student in one section score more points than every student in the other section? If not, explain what a statistical tendency means in this context.

c. What could be one additional variable that was not mentioned in the narrative that could be influencing the point distributions between the two sections?

Solutions

Expert Solution

1. the observational units in this study are to compare student performance in the two sections using course grades and total points earned in the course.

2. categorical variable is section: Sport or regular

quantitative variable is a score, total points earned in the course

3. Using R software, we create one variable to hold a subset of your data set that contains only the Regular Section and one variable for the Sports Section.

x=read.csv("Book.csv")      ## save the data is csv file and read in R.

SP=subset(x,Section=="Sports")
head(SP)

Count Score Section
1    10   200 Sports
2    10   205 Sports
3    20   235 Sports
4    10   240 Sports
5    10   250 Sports
8    30   285 Sports

RE=subset(x,Section=="Regular")
head(RE)

   Count Score Section
6     10   265 Regular
7     10   275 Regular
9     10   295 Regular
10    10   300 Regular
13    10   305 Regular
14    10   310 Regular

4.

Score1=SP[,2]
Score2=RE[,2]
par(mfrow=c(2,1))
plot(Score1, xlab="number of students", ylab="Score", main="Sports")
plot(Score2, xlab="number of students", ylab="Score", main="Regular")


Related Solutions

a professor is teaching three sections of the same course and wants to determmine if the...
a professor is teaching three sections of the same course and wants to determmine if the proprtion of students who passed is statistically different across the classes. the report below shows how many students in each section passed and how many were enrolled Section 1 - 82 passed 107 enrolled Section 2 - 74 passed 108 enrolled Section 3 - 89 passed 115 enrolled conduct the chi-square test and report the final test statistic
(b) Professor GeniusAtCalculus has two lecture sections (A and B) of the same 4th year Advanced...
(b) Professor GeniusAtCalculus has two lecture sections (A and B) of the same 4th year Advanced Calculus (AMA 4301) course in Semester 2. She wants to investigate whether section A students maybe ”smarter” than section B students by comparing their performances in the midterm test. A random sample of 12 students were taken from section A, with mean midterm test score of 78.8 and standard deviation 8.5; and a random sample of 9 students were taken from section B, with...
We wish to determine if a two sections of the same introductory course have significantly different...
We wish to determine if a two sections of the same introductory course have significantly different “success rates” (defined as the proportion of students who receive a course grade of A, B, or C). The first section meets in the early morning, the second section meets in the late afternoon. Each section has 70 students. Among the early morning section, 59 receive an A, B, or C. Among the late afternoon section, 49 receive an A, B, or C.. Assume...
2. Two sections of 70 Introductory Sociology students were taught with one section using no text...
2. Two sections of 70 Introductory Sociology students were taught with one section using no text and the other section using a popular introductory text. At mid-term, the same test was given to both sections with the following results: PLEASE SHOW WORK              No Text         Popular Text               n1=70            n2=70              1=75           2=71              S1=8             S2=10    a) Test for the significance of the difference between two population means (set α (alpha) =.01 level).             b) Calculate the effect size...
Two sections of a class in statistics were taught by two different methods. Students’ scores on...
Two sections of a class in statistics were taught by two different methods. Students’ scores on a standardized test are shown in Table 5.12 . Do the results present evidence of a difference in the effectiveness of the two methods? (Use α = 0.05.) Class A: 74, 97, 79, 88, 78, 93, 76, 75, 82, 86, 100, 94 Class B: 78, 92, 94, 78, 71, 85, 70, 79, 76, 93, 82, 69, 84 Include R code.
An instructor who taught two sections of MTH132, with 20 and 30 students respectively. The instructor...
An instructor who taught two sections of MTH132, with 20 and 30 students respectively. The instructor randomly select 15 students for a field trip. 1. What is the chance that exactly 10 of them are from the 2nd section? 2. What is the chance that at least 10 of them are from the 2nd section? 3. What is the chance that at least 10 of them are from the same section?
An instructor who taught two sections of engineering statistics last term, the first with 25 students...
An instructor who taught two sections of engineering statistics last term, the first with 25 students and the second with 30, decided to assign a term project. After all projects had been turned in, the instructor randomly ordered them before grading. Consider the first 15 graded projects. (b) What is the probability that at least 10 of these are from the second section? (Round your answer to four decimal places.) (c) What is the probability that at least 10 of...
An instructor who taught two sections of engineering statistics last term (the first with 20 students...
An instructor who taught two sections of engineering statistics last term (the first with 20 students and the second with 30), decided to assign a term project. After all projects had been turned in, the instructor randomly ordered them before grading. Consider the first 15 graded projects. a. What is the probability that exactly 10 of these are from the second section? b. What is the probability that at least 10 of these are from the second section?
An instructor who taught two sections of engineering statistics last term, the first with 25 students...
An instructor who taught two sections of engineering statistics last term, the first with 25 students and the second with 35, decided to assign a term project. After all projects had been turned in, the instructor randomly ordered them before grading. Consider the first 15 graded projects. (a) What is the probability that exactly 10 of these are from the second section? (Round your answer to four decimal places.) (b) What is the probability that at least 10 of these...
An instructor who taught two sections of engineering statistics last term, the first with 25 students...
An instructor who taught two sections of engineering statistics last term, the first with 25 students and the second with 35, decided to assign a term project. After all projects had been turned in, the instructor randomly ordered them before grading. Consider the first 15 graded projects. (a) What is the probability that exactly 10 of these are from the second section? (Round your answer to four decimal places.) (b) What is the probability that at least 10 of these...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT