Q1) Calculate probability from the given dataset for the below cases Data_set: Cars.csv Calculate the probability of MPG of Cars for the below cases. MPG <- Cars$MPG a. P(MPG>38) b. P(MPG
Answers
Answered by
28
Answer:
Yes I gives you answer if you follow me please
Answered by
5
Answer:
a=subset(MPG,MPG>38)
show(a)
=33/81
b=subset(MPG,MPG<40)
show(b)
=67/81
P (20<MPG<50)
show(c)
= 69/81
Step-by-step explanation:
MPG <- Cars$MPG
MPG sample(MPG)
a=subset(MPG,MPG>38)
show(a)
b=subset(MPG,MPG<40)
show(b)
c=subset(MPG,MPG>20 & MPG <50)
show(c)
Similar questions