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
PLEASE HELP!!
siniylev [52]
1.) Substitute into the inequality is it true:
      1 < 2(-4)+5
      1 < -3   False so the answer is b. No
2.) since y < the expression for the line, shade below
6 0
2 years ago
How to find slope and y intercept 6x-5y=15?
iogann1982 [59]
We need to put this equation in y = mx + b form because in this form, the slope will be in the m position and the y intercept will be in the b position. So basically, we solve for y.

6x - 5y = 15 ....subtract 6x from both sides
-5y = -6x + 15...divide both sides by -5
(-5/-5)y = (-6/-5)x + (15/-5)...simplify
y = 6/5x - 3

y = mx + b...remember, m is ur slope and b is ur y int
y = (6/5)x + (-3).....ur slope(m) = 6/5 and ur y int (b) = -3
7 0
2 years ago
Part A
DIA [1.3K]

Answer:

is there a figure for this question?

5 0
3 years ago
F(x) has domain (-4,-2, 0, 2, 4) and range
CaHeK987 [17]

Answer:

1/2

Step-by-step explanation:

I just did the problem on edgenuity.

8 0
3 years ago
You unfold chicken wire to make a circular pen. The area of the pen is 78.5 square meters. How many meters of chicken wire do yo
Lelu [443]
Circular pen means you are going to use Area = Pi(r^2). 

So 78.5 = pi(r^2). Divide by pi on both sides to get r^2 = 78.5/pi. Take the square root of that to get r or radius = approximately 4.99. If you need an exact answer then use \sqrt{ \frac{78.5}{ \pi } } for the next part because you are not done yet.

Plug whatever R you use into the circumference formula of Circumference = 2(pi)(r).

If you use 4.99, you do 2(pi)(4.99) which is approximately 31.35. If you use the exact answer, you do 2(pi)(\sqrt{ \frac{78.5}{ \pi} }) which gives you approximately 31.41. 

Either way you'll need about 31 meters of chicken wire but the 31.40796 or ~31.41 is closer to the exact answer. 
8 0
3 years ago
Other questions:
  • Faelyn noticed that she does not have a common factor. Which accurately describes what Faelyn should do next?
    13·2 answers
  • PLEASE HELP what is 12% of 100?
    11·2 answers
  • How to do the math problem 15 divided by 3 + 7x6?
    15·1 answer
  • X² + 4y² = 36<br> The major axis runs along:<br> A) y=4x<br> B) x-axis<br> C) y-axis
    5·2 answers
  • What is the tangent ratio for angle b?
    13·2 answers
  • The school has an acceptance rate of 15%. 15% of the students that apply get in. The school took in 1800 students last year. How
    12·1 answer
  • Manuel invested $10,000 in a savings account with a 3% interest rate that gets compounded daily. Write a model for Manuel to tra
    13·1 answer
  • Shaunta is developing a recursive formula to represent an arithmetic sequence in which 5 is added to each term to determine each
    15·1 answer
  • Point A and point B are placed on a number line. Point A is located at -5 and point B is 10 less than point A. Which statement a
    6·1 answer
  • Which quotient shows the decimal placed correctly?
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!