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
I need help i dont understand​
solmaris [256]

Answer:

D. 1/3^3

Step-by-step explanation:

Divide 3/3 as usual and get 1.

When dividing exponents, you are actually subtracting them. 5-8 = -3.

D is the answer because positive exponents in the denominator of the fraction is the same as a negative exponent in the numerator.

5 0
3 years ago
Read 2 more answers
Please help meeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
IRISSAK [1]

Answer:

4 packages

Step-by-step explanation:

450 can be divided by 100 4 whole times, the extra cards cannot be added into a package

7 0
2 years ago
Read 2 more answers
What is the answer to -12=2+5v+2v
katovenus [111]

Answer:

Isolate the variable by dividing each side by factors that don't contain the variable.

v  =  − 2

Step-by-step explanation: No the right answer? Let me know!

7 0
3 years ago
Two ways to write 600,000+80,000+10
inn [45]
Six hundred thousand ,+ Eighty thousand ,+ ten.
8 0
3 years ago
Read 2 more answers
I need help please 36 points
geniusboy [140]

Using the power of zero property, we find that:

a) The simplification of the given expression is 1.

b) Since , equivalent expressions are:  and .

--------------------------------

The power of zero property states that any number that is not zero elevated to zero is 1, that is:

Thus, at item a, , thus the simplification is .

At item b, equivalent expressions are found elevating non-zero numbers to 0, thus  and .

5 0
2 years ago
Other questions:
  • Which explains whether ΔFGH is congruent to ΔFJH?
    14·2 answers
  • an item has increased 15%. a person can buy the item for a 25% employee discount. The employee pays 172.50. What was the price l
    9·1 answer
  • If u earned $100 a week how long does it take to earn 100,000
    9·1 answer
  • Given right triangle XYX which correctly describes the location of the sides in relation to y​
    5·1 answer
  • Monique bought a shirt for $22.80 during a 30% off sale. How much does the shirt cost when it is not on sale?
    6·2 answers
  • Which is the discriminant of 2x2 - 4x + 7 = 0
    8·1 answer
  • Which expression is equivalent to -10x + 5?
    15·1 answer
  • To amend a country's constitution 7/9 of the 69 states in that country must approve the amendment. If 52 states approve an amend
    7·1 answer
  • What is 15/45 = 6/x??
    11·2 answers
  • which of the following is a true statement? a. 4/5 &lt; 0.80 &lt;8% b. 4/5 = 0.80 = 80% c. 4/5 = 0.80 = 8% d.4/5 &lt; 0.80 &lt;
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!