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
6+0.4+0.009___6+0.07+0.009 which statement compares the two numbers correctly
VikaD [51]

Answer:

5

Step-by-step explanation:

8 0
3 years ago
Jamal reads 5/8 page in 2/3 minutes. What is the unit rate?
kumpel [21]
5/8 . 3/2 is 15/16
So the answer is D
5 0
3 years ago
How far apart are the 2 cities? See picture. <br> Show steps
Gennadij [26K]

9514 1404 393

Answer:

  373 miles

Step-by-step explanation:

The difference in latitude is ...

  39.1° -33.7° = 5.4° = 0.54°(π/180°) radians = 0.03π radians

The arc length is given by ...

  s = rθ, where θ is the angle in radians

The length of the arc along the longitude line is ...

  s = (3960 mi)(0.03π) ≈ 373 mi

The distance from Atlanta to Cincinnati is about 373 miles.

6 0
3 years ago
HELP
kherson [118]

Answer: For the equation simply substitute 30 in for v and 4 in for s in the equation given, so H=-16t^2+30t+4

Part 2.

If the juggler misses the ball, you wish to know the time that it takes for the ball to travel the four feet from his hand to the ground, so respectively,

4=-16t^2+30t+4 or 0=-16t^2+30t or 0 = -16t+30,

solving for t, t =30/16 seconds or 1.875 seconds

Step-by-step explanation:

4 0
3 years ago
Solve for q.<br> a=qb+r<br> What is q equal to?<br> q=a−r−b<br> q=a−r/b<br> q=a/b −r<br> q=a/rb
Mademuasel [1]

The given equation is a=qb+r

We need to solve the equation for q.

<u>Value of q:</u>

The value of q can be determined by solving the equation a=qb+r for q.

Thus, subtracting both sides of the equation by r, we get;

a-r=qb

Now, dividing both sides of the equation by b, we have;

\frac{a-r}{b}=\frac{qb}{b}

Simplifying the terms, we get;

\frac{a-r}{b}=q

Therefore, the value of q is q=\frac{a-r}{b}

Hence, Option B is the correct answer.

7 0
3 years ago
Other questions:
  • What is the volume of the pyramid in the diagram?<br> 25 cm<br> h = 15 cm<br> 15 cm<br> 20 cm
    12·1 answer
  • alex has twice as much money as jennifer. jennifer has $6 less than shannon. Together they have 54$. How much money does each ha
    12·1 answer
  • How do I solve this?
    15·1 answer
  • It takes 53 minutes for 6 people to paint 6 walls. How many minutes does it take 20 people to paint 20 walls?
    14·2 answers
  • The total cost of c ounces of cinnamon if each ounce costs$.79
    11·1 answer
  • If you flip a coin and roll a dice. What is the probability that you will get a heads on the coin and a 3 on the dice?
    8·1 answer
  • What is the equation of the midline?
    6·1 answer
  • How are mimes and tableaus different. and how are they similar​
    10·1 answer
  • The plant-breeding department at a major university developed a new hybrid boysenberry plant called Stumptown Berry. Based on re
    15·1 answer
  • When 4x^2+7x-5 is subtracted from 9 x^2-2x+3 the result is<br><br> please help me
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!