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
Write as an algebraic expression: *20% of 75% of y
Montano1993 [528]

Answer:

0.15y

Step-by-step explanation:

0.2*0.75*y = 0.15y

3 0
3 years ago
Jerry has just purchased his first home for $190,000. He put down a 20 percent down payment of $38,000 and took out a 5 percent
shepuryov [24]

Answer:

$66.67

Step-by-step explanation:

The calculation of first monthly mortgage payment is amortization is given below:-

Amount borrowed = Purchase first home cost - Down payment

= $190,000 - $38,000

= $152,000

Annual interest = ($152,000 × 5%) ÷ 12

= $7,600 ÷ 12

= $633.33 per month

Now,

First monthly payment = Mortgage payment - Annual interest

= $700 - $633.33

= $66.67

Hence, we simply applied the above formula.

7 0
3 years ago
The bed of a pick up truck measures 4' x 8" to the nearest inch what is the length of the longest thin metal bar that will lie f
Andru [333]
Ok so what y ou want to do it to max space, lie it diagonally
use pythagoren theorem
first convert the units

4'=4 feet
8''=8 inches
convert to inches
4 feet times 12=48 inches

so
pythagorea theorem is
a^2+b^2=c^2
c=hypotonuse
a and b are legs
in a right triangle

8 and 48 are the legs
fidn hypotonuse

8^2+48^2=c^2
64+2304=c^2
2368=c^2
8√37=c
aprox
48.66=c
4 feet amd 0.66 inches
6 0
3 years ago
What is cos (x)?<br><br> 48/58<br><br> 58/48<br><br> 26/58<br><br> 58/26
Evgen [1.6K]
<span>We have to calculate the length of the missing side.
Use the Pythagorean theorem:

a^2+32^2=58^2\\\\a^2+1024=3364\ \ \ |-1024\\\\a^2=2340\to a=\sqrt{2340}\\\\a=\sqrt{36\cdot65}\\\\a=6\sqrt{65}

\cos x=\dfrac{6\sqrt{65}}{58}=\dfrac{3\sqrt{65}}{29}

I think. Your answers to choice are wrong.
</span>
8 0
3 years ago
Andrea and her friends love cake. Andrea has two cakes. Each of her friends are going to eat 2/3 of a cake. How many servings of
BigorU [14]

Divide 2 cakes by 2/3 serving:

2 / 2/3 = 2 x 3/2 = 6/2 = 3 servings.

7 0
3 years ago
Read 2 more answers
Other questions:
  • A survey of 1,108 employees at a software company finds that 621 employees take a bus to work and 445 employees take a train to
    6·1 answer
  • Patrick is building a sandbox he begins with one piece of wood. He cuts 3 feet off the piece of wood then he cuts the remaining
    12·1 answer
  • PLEASE HELP: A medication 60 mg is ordered. the vial is labeled 1 gm/ 10 ml. How many ml would you give?
    6·1 answer
  • Please help me on #7
    10·1 answer
  • Find the interior angle sum for each polygon.
    14·2 answers
  • In AABC, what is the measure of angle B?
    6·2 answers
  • a bag contains three red marbles five blue marbles and seven green marbles.what is the ratio of blue marbles to the total number
    11·1 answer
  • Multiple (7s^5)(-1/5s^3​
    15·1 answer
  • Question in the picture! Answer ASAPP!! Will give brainliest!
    5·1 answer
  • If an airplane passes directly over your head at an altitude of 12 kilometers, how far is the airplane from your position after
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!