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
John walked x km. Sue has 3/7 walked less. Write an
maxonik [38]

Answer:

x - 3/7

Step-by-step explanation:

4 0
3 years ago
Combine the following sets of terms.
DanielleElmas [232]

Let's simplify step-by-step To understand :)

3x2−7x−(x2+3x−9)

Distribute the Negative Sign:

=3x2−7x+−1(x2+3x−9)

=3x2+−7x+−1x2+−1(3x)+(−1)(−9)

=3x2+−7x+−x2+−3x+9

Combine Like Terms:)

=3x2+−7x+−x2+−3x+9

=(3x2+−x2)+(−7x+−3x)+(9)

=2x2+−10x+9

Answer :)

=2x2−10x+9


HOPE THIS HELPS

3 0
3 years ago
PLEASE HELP MATH
Juliette [100K]

Answer:

57

Step-by-step explanation:

6 0
3 years ago
Read 2 more answers
What is the distance between the points (5, 1) and (-3,-5)?
Reil [10]

Answer: THIRD OPTION.

Step-by-step explanation:

For this exercise you need to use the formula for calculate the distance between two points. This is:

d=\sqrt{(x_2-x_1)^2+(y_2-y_1)^2}

Given the following points:

(5, 1) and (-3,-5)

You can identify that:

x_2=-3\\x_1=5\\\\y_2=-5\\y_1=1

Knowing these values, the next step is to substitute them into the equation for calculate the distance between two points and then evaluate.

Therefore, the distance between (5, 1) and (-3,-5) is:

d=\sqrt{(-3-5)^2+(-5-1)^2}\\\\d=10

8 0
3 years ago
Use properties to compare expression 5 x ( 6 x 3 )and ( 5 x 6) x 3
nadya68 [22]
5(6*3) = 5(18) = 90

(5*6)3 = (30)3 = 90

The answer is the same by the associative law.
6 0
3 years ago
Other questions:
  • Write and expression that represents the difference of 32 and n , multiplied by 10
    14·1 answer
  • Andrew bought a house worth 200,000 dollars the house value appreciates 1% per year which of the following would help you find t
    6·1 answer
  • A gopher begins at 7 inches below the surface of a garden and digs
    11·1 answer
  • Escreva os numeros racionais na forma de fração: +6,8,-0,375,-0,02 e 0,07
    15·2 answers
  • Damian filled up his car with gas before embarking on a road trip across the country. The car uses 2 gallons of gas for every ho
    6·1 answer
  • I need help with this math problem please! At a basketball game, 55% of people attending were supporting the home team, while 45
    9·1 answer
  • How many times can 50 go into 250? Correct=brainliest
    9·1 answer
  • HELP ME!!!!!!!!!!! Its the one in the middle
    10·1 answer
  • Combine these radicals. square root 27 and square root 3
    11·1 answer
  • Simplify (x^6)^2 • x^3
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!