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
A card player selects a playing card from a well-shuffled deck of standard playing cards and sees if the card is a red card or n
dmitriy555 [2]

Answer:

A

Step-by-step explanation:

there could be no red cards inside

8 0
3 years ago
It is given that 2(3+x)=6+2x. this is an example of the ____ property.
hoa [83]
I believe this is the distributive property.
6 0
3 years ago
Read 2 more answers
Name two pairs of congruent angles.
larisa [96]

ZOSP= PSQ and

ZPSQ E ZOSR

4 0
2 years ago
A construction company uses the function f(p) where p is the number of people working on a project to model the amount of money
Jlenok [28]

Answer:

Domain of f(p) =  [0,∞), where it belongs to whole numbers only

Step-by-step explanation:

The domain is the set of all possible values of independent variable for which function is defined

As in the given function f(p), we have the independent variable p. As p is the number of people working on the project, so it means either the number of people could be 0 or it could be anything greater than 0,  like it could be equal to thousand or ten thousand, but it can not be fraction in any case.

So, the domain is set of whole numbers starting from 0.

Domain of f(p) = [0,∞)  


5 0
3 years ago
Read 2 more answers
3. What are the domain and range of (x) = 4* ?<br> Domain: <br><br> Range:
Natali [406]
I think you can do that on photo math
6 0
2 years ago
Other questions:
  • The tree in chucks yard is 48 feet tall. How many inches tall is the tree
    6·2 answers
  • A(r) is a function that gives the area of a circle with radius r. It can be written in equation form as A(r) = 3.14r2. What is t
    14·1 answer
  • 12) Add the fractions, and simplify if possible.<br><br> (y+7)/(y^2-y-12) - 2/(y^2-9)
    7·1 answer
  • Jason correctly graphed an inequality as shown below
    10·1 answer
  • Intermolecular forces in liquids are stronger than in gases but
    8·1 answer
  • PLEASE I WILL GIVE BRAINLIEST..................don't do it A
    11·1 answer
  • Marissa knits caps that she supplies to several baby stores. She purchases five bundles of yarn for $62.50. Select the
    13·2 answers
  • CO 5<br> What is the value of tan(60°)?<br> A<br> O<br> 12<br> 30°<br> 3<br> B<br> 60°<br> 6
    13·1 answer
  • You rent an apartment that costs $1300 per month during the first year, but the rent
    11·1 answer
  • Question number seven.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!