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
Jane cycles 27km at 12km/h how long does she take ??? Plsss helppppppppp
seropon [69]
My guess is 30 mins sorry if wrong hope this helps
5 0
4 years ago
Plz help, will give brainiest
Tems11 [23]

Answer:

4x^2 + 8x + 4

4(x^2 + 2x + 1) - remove GCF of 4

4(x + 1)(x + 1) - factor

4(x + 1)^2 - collect like terms

Step-by-step explanation:

Then also expand it out by distributing:

21x^3 + 35x²

Form 1:

21x^3 + 35x² - unfactored

Form 2:

7x²(3x + 5) - factored with GCF of 7x² brought to the front

Update:

You could also multiply two binomials and make a quadratic.

Example:

(7x + 2)(3x + 5)

7x(3x + 5) + 2(3x + 5)

= 21x² + 35x + 6x + 10

= 21x² + 41x + 10

7 0
3 years ago
Solve this system by substitution. <br> Y=-8x-23<br> Y=-5x-14
matrenka [14]
set\ them\ equal\ to\ each\ other \\ -8x-23=-5x-14 \\ -3x-23=-14 \\ -3x=9 \\ x= \frac{9}{-3} \\ x=-3 \\  \\ plug\ in\ OG\ equation \\ y=-8x-23 \\ y=-8(-3)-23 \\ y=24-23 \\ y=1 \\  \\ \boxed {(-3,1)}
7 0
3 years ago
Read 2 more answers
Science is Hayley's favorite class! She especially loves doing experiments. Today, she began
raketka [301]

Answer: the final mass of the solid is 176 grams.

Step-by-step explanation:

The "change" between two quantities, one initial Qi and one final Qf is defined as:

Change = Qf - Qi.

In this case, the quantity is mass, and we know that the initial mass is 260 grams.

And we also know that the change is -84 grams.

Then we have the equation:

Qf - 260 g = -84g

Qf = -84g + 260g = 176g

So the final mass of the solid is 176 grams.

8 0
3 years ago
I will mark as the brainliest answer
Afina-wow [57]
The scale factor from the small one to the big one is 3
3 0
3 years ago
Other questions:
  • What is the equation of a line that passes through the point (4,-6) and has a slope of -3
    6·1 answer
  • Sal's Sandwich Shop sells wraps and sandwiches as part of its lunch specials. The profit on every sandwich is $2 and the profit
    5·1 answer
  • Plz help :( what is n – 10 + 2n + 5
    6·1 answer
  • Six more than five times a number (x) is atleast twenty-one.
    11·1 answer
  • Solve for x Write the smaller solution first, and the larger solution second.
    12·1 answer
  • Select the conic section that represents the equation. y = 2x^2 + 7​
    5·1 answer
  • Solve the equation. 40 = x - 20<br><br><br> a-60<br><br> b60<br><br> c20<br><br> d<br> -20
    15·1 answer
  • The standard form of the equation of a parabola is x = y2 - 4y + 20. What is the vertex form of the equation? A.x = (y - 4)2 + 1
    10·1 answer
  • A shirt was originally priced at $45. The store is having a 35% off sale. How much will you pay for the shirt after the discount
    8·1 answer
  • Graph this line using the slope and intercept <br> -1/9x-8
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!