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
Which words make this statement true?
yan [13]
-4 is Less than -3 is the answer
4 0
3 years ago
How do you find perimeter?
Wewaii [24]
All you do is add up all of the side lengths, and you got the perimeter.
7 0
2 years ago
A group of researchers wants to develop an experiment to determine whether a new drug effectively treats hypothyroidism. The res
Rashid [163]

Some possible ethical issues to this type of testing that they are subjected to unpleasant and hazardous procedures, as well as stress and injury.

<h3>What is experiment?</h3>

Any well-defined method that yields an observable outcome that cannot be precisely predicted in advance is referred to as a experiment. To avoid any ambiguity or surprise, a experiment must be properly defined.

A) Because human experimentation is immoral, animal research has been employed as a research approach.

However, using animals is unethical because they are subjected to unpleasant and hazardous procedures, as well as stress and injury. The use of non-animal methods to substitute animal methods as much as possible will provide both ethical and technical benefits. Researchers should make the use of non-animal methods for a top priority experiments.

B) Even though the purpose of an experiment is to ensure success in rabbits, this is incorrect in people because action is what will operate properly.

The absence of thyroid-stimulating hormone in rabbit serum is a mistaken notion. As a result, it is preferable to test the drug further, and it was a success. As a result, there will be no dysfunctionality for humans.

Thus, some possible ethical issues to this type of testing that they are subjected to unpleasant and hazardous procedures, as well as stress and injury.

Learn more about the experiment here:

brainly.com/question/14298568

#SPJ1

8 0
1 year ago
There are 40 students in your class of which 23 are boys. What fraction of the students are girls?​
Ronch [10]

Answer:17/23

Step-by-step explanation:

4 0
2 years ago
Read 2 more answers
I really need help
Alex

Answer:

See step by step

Step-by-step explanation:

To find if a function intervals are possible, make sure the points are above the x axis.

The graph is getting positve around x=-3 but it isn't positive yet.

The graph is positve until x=-1

The graph becomes positive again again at x=2 and is positive infinitely forever.

So let set up our interval

We are going to start at -3 since that where it start getting positive, we then going to use the greater than sign since it get positve as we go to the right as of right now. We use the greater than becuase we are not going to include -3 as our solutions.

We then use a less than sign since the answer must be less than -1 becuase around-1 it start getting negative.

It becomes positive again at x=2 so since we going to left to right use the greater than sign becuase we are not including 2.

It infinitely becomes positive so our interval is x must be cause greater than w becuase it can be any interval greater than two.

- 4 > x <  - 1

and

2 < x

The roots or zeroes are the x intercept of the graph,(when y=0, what is the x value.)

The x intercepts are -3 and 2.

3 0
3 years ago
Other questions:
  • -8=v/3-3 <br> solve for V
    5·2 answers
  • 1 2 3 4 .... 1002 what is the sum of the sequence
    14·1 answer
  • Which triangle side lengths form a right triangle? Choose all that apply. 5, 6, 7 6, 8, 14 8, 15, 17 10, 12, 15 15, 20, 25 16, 1
    11·2 answers
  • I really need help with this question, pls help!!
    6·1 answer
  • F(x)=x+2,translation 2 units right
    15·1 answer
  • 21×9=9×21 what property is used
    6·1 answer
  • Fracción equivalente de 1/3
    10·1 answer
  • Help a brother out grades go in tomorrow
    11·2 answers
  • Can someone please explain this to me ?
    5·1 answer
  • Find the value of the x shown below.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!