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
On Saturday, Quentin will earn $15 more than 2 times the amount of money he earned on Friday. If Quentin earned d
Licemer1 [7]
Your anwser will be (A) - 2d+15
6 0
3 years ago
What are the coordinates of the point that is common to the graph of f(x) = (2/3) ^ x and the graph of f(x) = (3/2) ^ x
kiruha [24]

Answer:

Both point are y=0. The difference between the two is that 2/3 is always decressing and 3/2 is always incressing.

Step-by-step explanation:

7 0
2 years ago
Daniel left a $9 tip for the waiter at a restaurant. If the tip was 15 percent of the bill, how much was the bill?
Pie
Without the tip it was $60. If you are being asked to add the tip it will be $69
5 0
3 years ago
Need help ASAP !!!!!!!
Anestetic [448]
First we distribute \frac{1}{5} into n and -\frac{1}{7}.

\frac{1}{5} * n =  \frac{1}{5} n
\frac{1}{5}  *  -\frac{1}{7}  = - \frac{1}{35}

That makes the left side of the equation 

\frac{1}{5} n -  \frac{1}{35} =  \frac{1}{6} n

Now we subtract \frac{1}{5}n from \frac{1}{6} n, which makes \frac{1}{30}

Now the equation is 

-\frac{1}{35} =  -\frac{1}{30n}

Our goal is to isolate n, so we both sides by 30

30* -\frac{1}{35} = - \frac{1}{30}n * 30 

That will make the equation 

- \frac{30}{35} = -n

We multiply -1 on both sides of the equation:

\frac{30}{35} = n

Finally we simplify \frac{30}{35}, which makes \frac{6}{7}

So the answer is n =  \frac{6}{7}
5 0
3 years ago
Which graph represents the solution set of the system of inequalities?
lidiya [134]

y < \dfrac{2}{3}x\\\\y=\dfrac{2}{3}x\\\\for\ x=0\to y=\dfrac{2}{3}(0)=0\to(0,\ 0)\\\\for\ x=3\to y=\dfrac{2}{3}(3)=2\to(3,\ 2)\\\\y\geq-x+2\\\\y=-x+2\\\\for\ x=0\to y=-0+2=2\to(0,\ 2)\\\\for\ x=2\to y=-2+2=0\to(2,\ 0)

y < \dfrac{2}{3}x

the dotted line. shadow under the line

y\geq-x+2

solid line. shadow above the line

Answer in the attachment (graph C).

8 0
3 years ago
Other questions:
  • if u are really good at algebra and two way frequency tables please let me know i need some help on 3 questions.
    6·1 answer
  • Mother bought a washing machine for $490 and a dryer for$ 520 if she made 10 equal payments how much would each payment be
    7·1 answer
  • 4(m+2) rewrite using distributive property
    6·2 answers
  • Briana spent 2 3/4 hours on her science project. Jackson worked 1 1/3 times as long on his science project as Briana worked. For
    9·1 answer
  • 0.24 + 4.25 equals what ?
    13·2 answers
  • You make one pitcher of iced tea and one pitcher of lemonade for a party. Just before the party starts, you catch a little misch
    11·1 answer
  • 6/9 is a rational number. Select all the rational numbers that are equivalent to 6/9
    5·1 answer
  • 2.Which set of ordered pairs does ***NOT*** represent a function?
    9·2 answers
  • PLZ HELP DUE IN 10 MINUTES!
    5·1 answer
  • Can anyone help me with this Midterm Advanced Algebra problem. (DONT ANSWER IF YOUR NOT SURE)
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!