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
Calculate the volume of each of the following prisms.
Mariana [72]

Answer:

The Rectangular prism in the top-left corner is 11,760. The top-middle rectangular prism is 7,938. The top-right rectangular prism is 4,851. The shape that is orange and pink I don't know what it is. The triangular prism on the middle of the page is 11.781. The blue cylinder is 38,936. The green rectangular prism is 23,125. The "clear" rectangular prism on the bottom row is 31,668. The rectangular prism in the bottom right corner is 14,688. That is all, I'm almost 100 percent sure they are all right!

3 0
2 years ago
Y&gt; 3x-2<br> Graph the solution
anastassius [24]

Answer:

4 es esa ????k nose

5 0
3 years ago
I need help on these questions pls
Lady bird [3.3K]
3a. Megan's car has more gas
3b. 2/3=66.666% and 3/5= 60% so 6 2/3 gallons

5. 108.09-15.45= 92.64


3 0
3 years ago
who won the tournament? both teams, they ______________________ for first place. a. tie b. tied c. are tying d. had tied e. won
shutvik [7]
I feel that (a) is the right answer because both teams tie the tournament.
8 0
3 years ago
What is the answer to this problem
Svetlanka [38]
Answer: P = $47,120.53
4 0
2 years ago
Other questions:
  • Under GAAP-based costing, what assumption justifies allocating organization-level manufacturing overhead among products?
    9·1 answer
  • ~please only answer if you know for sure~<br> Thanks :)
    11·2 answers
  • What is the value of x?<br><br> Enter your answer in the box.<br><br> x =____cm
    6·2 answers
  • Angle abd measures (4x+10). angle acd measures (5x-2). what is the measure of arc ad
    15·2 answers
  • L
    7·2 answers
  • The function below represents the interest Kristina earns on an investment. Identify the term that represents the amount of mone
    10·2 answers
  • Question 1 A) f(x)=2^x and g(x)=3−x I got 3x^2+12 don't know if im right B) i need help for this f(x)=sinx and g(x)=x
    12·1 answer
  • Why is the petrol price cheaper at coastal than inland
    6·2 answers
  • May u give all the answers to these? please and thank you! &lt;3
    8·1 answer
  • You go to the Redbox to get 10 rentals for the weekend. Movies rent for $4 and video
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!