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
What is the equation of the line that passes through the point -3/5 and has a slope of -2
Gemiola [76]

Answer:

y = -2x - 1

Step-by-step explanation:

y = mx + b

slope = m

y = -2x + b

5 = -2x * -3 + b

5 = 6 + b

-1 = b

y = -2x - 1

Let me know if I'm wrong :)

8 0
3 years ago
There are 3 consecutive odd integers that have a sum of 9.
Zolol [24]

Answer:

1+3+5

Step-by-step explanation:

I think

3 0
2 years ago
Can someone tell me what 2/3 divided by 5 is it’s for a quiz.
docker41 [41]

Answer:2/15 hope this helps

Step-by-step explanation:

7 0
3 years ago
Read 2 more answers
You bought a magazine for $5 and some candy bars for $4 each. You spent a total of $29. How many candy bars did you buy?
Yakvenalex [24]
6 candy bars because 6 times 4 is 24 plus the 5 for the magazine.
6 0
3 years ago
Need all the answers plz! will make brainliest
xz_007 [3.2K]
I have a shout out for a couple days I can get you the phone case I have a lot to
5 0
2 years ago
Other questions:
  • For each of the following pairs of waveforms, use the convolution integral to find the response y(t) of the LTI system with impu
    7·1 answer
  • I don't get it please help
    8·2 answers
  • 6-2x+5+4x how do you solve this​
    6·2 answers
  • Which equation can be rewritten as x + 4 = x2? Assume x greater-than 0 StartRoot x EndRoot + 2 = x StartRoot x + 2 EndRoot = x S
    8·2 answers
  • The expression 3(1.5)^t models the number of bacteria in a culture as a function of the number of hours since the cultures was c
    8·2 answers
  • Provide 2 examples/2 sets of factors.
    5·1 answer
  • Ok, I am so sorry ,I rlly don't understand any of these things , can y'all help me with
    11·1 answer
  • Help please and thank you: The graph of f x = x2 − 2x − 3 is shown. Which of these describes the effect changing f x to f −2x wi
    7·1 answer
  • Annie borrowed $354 from her parents to buy a tablet. She plans to pay the money in 2 equal payments per month for the next 12 m
    11·1 answer
  • When multiplying decimals, how do you find the number of
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!