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
8090 [49]
3 years ago
5

Analysis of the oil data set. One project from Fall 1999 consisted of heating motor oil until it catches on fire. There were eig

ht runs in random order where "conv" stands for conventional oil, "syn" stands for synthetic oil, "5/30" and "20/50" are two viscosities, and "time" is the time until catching fire. The data are as follows
Obs type vis time 1 conv 5/30 345 2 syn 5/30 658 3 conv 20/50 360 4 syn 20/50 546 5 conv 5/30 360 6 syn 5/30 676 7 conv 20/50 342 8 syn 20/50 512
Run lm in Splus or M-Lab to get the ANOVA output for determining (use full model: model time=vis+type+vis*type, after class vis type)if there is mean difference in oil types (conv vs. syn): p value =
Mathematics
1 answer:
motikmotik3 years ago
7 0

Answer:

See the explanation for the answer

Step-by-step explanation:

We shall analyse this in the open source statisitcal packageR , the complete R snippet is as follows

# read the data into R dataframe

data.df<- read.csv("C:\\Users\\586645\\Downloads\\Chegg\\syn.csv",header=TRUE)

str(data.df)

# perform anova analysis

a<- aov(lm(time~type*vis,data=data.df))

#summarise the results

summary(a)

colr<-c("salmon3" , "plum2","coral1","palegreen1" ,"orangered" ,"magenta4" )

# plots

boxplot(time~type*vis, data=data.df,ylab="Values",

main="Boxplots of the Data",col=colr,horizontal=TRUE)

attach(data.df)

interaction.plot(type,vis,time, type="b", col=c(2:6),

leg.bty="o", leg.bg="beige", lwd=2, pch=c(18,24,22),  

xlab="Type",

ylab="Value",

main="Interaction Plot")

The results are

> summary(a)

Df Sum Sq Mean Sq F value Pr(>F)

type 1 121278 121278 478.18 2.59e-05 *** ### signficant as the p value is less than 0.05

vis 1 9730 9730 38.36 0.00345 ** ### signficant as the p value is less than 0.05

type:vis 1 9316 9316 36.73 0.00374 ** ### signficant as the p value is less than 0.05 , hence the interaction effect is significant . The p values are highlighted

Residuals 4 1015 254    

---

Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

You might be interested in
A new washing machine uses 45% less water than an older
enot [183]

Answer:The family will use 792 gallons of water in the new washing machine

Step-by-step explanation:

1440 X 0.55=792

100-45=55

5 0
3 years ago
Which of these trends represents an inverse variation?
BaLLatris [955]

I think it is the first one could be wrong tho

8 0
3 years ago
the hypotenuse of a right triangle is 15 cm and the shorter leg is 9cm find the length of the other leg
vladimir2022 [97]

Answer:


Step-by-step explanation:


3 0
3 years ago
Read 2 more answers
Find the volume of a cylinder with a diameter of 8 inches and a height that is three times the radius round to the nearest hundr
patriot [66]

volume for cylinder = pi x r^2 x h

 radius = half the diameter = 8/2 =4

height = 3 times the radius = 3*4 =12

using 3.14 for pi

volume = 3.14 x 4^2 x 12 = 602.88 cubic inches

5 0
3 years ago
The symbol 5! means 5* 4*3*2*1. What is the greatest odd integer that is a factor of 5!?
NNADVOKAT [17]

Answer:

15

Step-by-step explanation:

5 ! = 120

Since 5 ! = 5 × 4 × 3 × 2 × 1, then

5 × 3 = 15 is the greatest odd factor of 5 !

4 0
3 years ago
Other questions:
  • Give the values of a, b, and c needed to write the equation's standard form. 1/4x^2+5=0
    14·2 answers
  • The approximate number of bicycles in the United States in the year 2007 was 14,000,000. How can this number be expressed in sci
    7·1 answer
  • Visitors enter the museum through an enormous glass entryway in the shape of a tetrahedron. The figure shows the dimensions of t
    5·1 answer
  • What is the area of this face ?
    5·2 answers
  • What is the midpoint between 10 and 20
    11·2 answers
  • 5(2x+7x)=-31 +36 whats the anser
    11·2 answers
  • Which basic geometric figure is labeled with either one capital letter or three capital letters?
    12·1 answer
  • A 45 foot ladder is set against the side of a house so that it reaches up 27 feet. If Nicole grabs the ladder at its base and pu
    11·1 answer
  • Help pleasseeeeeeeee
    14·1 answer
  • Combining like terms ,algebra
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!