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 mean of 7, 5, 9, 5, and 12
Kryger [21]
The mean is: 7.6
The range is: 7
The median is: 7
The mode is: 5
:)
5 0
3 years ago
Read 2 more answers
What is the remainder when x^2+ 3 is divided by x - 1?
emmasim [6.3K]

Step-by-step explanation:

x² + 3 / x - 1 = x + 1

- x² - x

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

0 x + 3

- x - 1

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

0 4

the remainder is 4

6 0
3 years ago
The graph of a relation must pass the vertical line test.<br><br> True or false
ozzi

Answer:

The graph of a relation must pass the vertical line test.

True

5 0
2 years ago
Read 2 more answers
A motorcycle insurance company has 5,000 policy holders, and the accident rate is 0.08. the company needs to invest $400,000 thi
Oksi-84 [34.3K]

When the insurance company want a plan with a deductible of $4,000, they need to charge a minimum of $18000 for premiums.

<h3>What is a deductible?</h3>

It should be noted that a deductible simply means the amount of money that is paid out of the pocket of the policy holder.

From the information given, each accident costs $18,000 on average. Therefore, this is the minimum amount of premium.

When they want a plan with a premium of $1,000, the amount that they'll need to charge for deductibles will be:

= (4000/18000) × 1000

= $220

Learn more about deductible on:

brainly.com/question/5306277

#SPJ1

8 0
2 years ago
Find the mean, median, and mode of the data set. Round to the nearest tenth. test scores on a math exam:
irinina [24]

Answer:

Mean:\frac{89+93+76+89+68+80+89+83+88+87+63+86+73+74+67+93+68+95+66+99+78+100 }{22}

Median: 63, 66, 67, 68, 73, 74, 76, 78, 80, 83, 86, 87, 88, 89, 89, 89, 93, 93, 95, 99, 100

\frac{86+83}{2}= 169/2

Mode: 100

Step-by-step explanation:

8 0
2 years ago
Other questions:
  • Which statement is true about the relationship y = |x|?
    5·1 answer
  • In a recent year the weather was partly cloudy 2/5 of the days.Assuming there are 365 days in a year how many days were partly c
    8·1 answer
  • What did Zorna say about marring a shorter man
    13·1 answer
  • Customers arrive at a service facility according to a Poisson process of rate λ customers/hour. Let X(t) be the number of custom
    10·1 answer
  • Write the equation represents the line.
    5·1 answer
  • The graph of F(x), shown below, has the same shape as the graph of G(x)=x^4, but it’s shifted 3 units to the left. What’s its eq
    13·1 answer
  • The price of a computer after discount was $850. If the discount was 25%, what was the original price of the computer?
    10·1 answer
  • Armando has collection of 25 coins . Of the 25 coins , 11 are nickles. What percent of the coins are nickles ?
    8·1 answer
  • A scale drawing of a triangular stage is shown below.
    6·1 answer
  • Garret works part time at his dads restaurant bussing tables. He earns 450 a month. the circle graph represents garrets monthly
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!