1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
MariettaO [177]
3 years ago
15

Consider the case0502 data from Sleuth3. <<< This is the data. Sleuth3 is preloaded into R studio.

Mathematics
1 answer:
Finger [1]3 years ago
6 0

Answer:

Consider the following calculations

Step-by-step explanation:

The complete R snippet is as follows

install.packages("Sleuth3")

library("Sleuth3")

attach(case0502)

data(case0502)

## plot

# plots

boxplot(Percent~ Judge, data=case0502,ylab="Values",

main="Boxplots of the Data",col=c(2:7,8),horizontal=TRUE)

# perform anova analysis

a<- aov(lm(Percent~ Judge,data=case0502))

#summarise the results

summary(a)

### we can use the independent sample t test here

sp<-case0502[which(case0502$Judge=="Spock's"),]

nsp<-case0502[which(case0502$Judge!="Spock's"),]

## perform the test    

t.test(sp$Percent,nsp$Percent)

The results are CHECK THE IMAGE ATTACHED

b)

> summary(a)

Df Sum Sq Mean Sq F value Pr(>F)

Judge 6 1927 321.2 6.718 6.1e-05 *** as the p value is less than 0.05 , hence there is a significant difference in the percent of women included in the 6 judges’ venires who aren’t Spock’s judge

Residuals 39 1864 47.8

---

Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

c)

t.test(sp$Percent,nsp$Percent)

  Welch Two Sample t-test

data: sp$Percent and nsp$Percent

t = -7.1597, df = 17.608, p-value = 1.303e-06 ## as the p value is less than 0.05 , hence we reject the null hypothesis in favor of alternate hypothesis and conclude that there is a significant difference in the percent of women incuded in Spock’s venires versus the percent included in the other judges’ venires combined

alternative hypothesis: true difference in means is not equal to 0

95 percent confidence interval:

-19.23999 -10.49935

sample estimates:

mean of x mean of y

14.62222 29.49189

You might be interested in
Given the arithmetic sequence an = 2 + 4(n − 1), what is the domain for n?
zlopas [31]
The answer should be A the first one
3 0
3 years ago
Read 2 more answers
A school district's superintendent wants to administer a test of life skills to a sample of students. The superintendent has amp
tangare [24]

Answer:

-Convenience Sampling

Step-by-step explanation:

Convenience Sampling is a sampling method that is employed simply because the samples are easy to reach or access. It is a non-probability system of sampling and not a very strong method of sampling. For a serious research such as the one being conducted by the Superintendent, who has ample time to perform the research, this is not a very good sampling method. A Convenience style of research would mean that he can just walk into a cafeteria with students and administer the test to them.

Since he has detailed information of the students, he should choose any of the other mentioned sampling techniques in the options provided to randomly select the subjects. <em>This would help to</em> prevent bias, and enable him to make generalizations with the result of the research.

6 0
3 years ago
-4/9 * -5/8 I really want to know the answer home work is due and I need a explanation
lilavasa [31]
-4/9 times -5/8 you can cross cancel the 4 and 8 so it makes the problem -1/9 times -5/2 which equals -5/18
4 0
2 years ago
What is this? I need help
quester [9]
I think it is scend choose
5 0
3 years ago
Read 2 more answers
The smallest unit of size in the list below is the
Neko [114]
D.) Nanometer is the smallest among your options.

It is equal to 10^-9

Hope this helps!
5 0
3 years ago
Read 2 more answers
Other questions:
  • yesterday Stephanie spent $38.72 on new shoes and $23.19 on computer software when she was finished she had $38.18 how much mone
    9·1 answer
  • Solve for c in the equation 32c = 128.
    14·1 answer
  • You lean a 30 foot ladder against your house and it reaches exactly to the top. The ladder makes a 24 degree angle with the grou
    8·1 answer
  • Is Miss Smith can bake 150 cookies and six hours how many cookies will she bake for an hour find the unit rate
    14·1 answer
  • HELP PLEASE I NEED TO PASS TOMORROW
    6·1 answer
  • Fractions are hard... Or I'm just to lazy to try and do them.
    15·1 answer
  • A. 159000<br> B. 23000<br> C. 54896<br> D. 12387
    8·2 answers
  • Simplify the expression.
    9·1 answer
  • Winter coats are marked 70% off on February 1st. If a coat originally costs $57.70, how much will it cost on sale?
    13·2 answers
  • Help me!<br> <img src="https://tex.z-dn.net/?f=%5Csqrt%7B84%7D%20%2B%5Csqrt%7B84%7D%20%3D%3F" id="TexFormula1" title="\sqrt{84}
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!