I think it would best be displayed as a line plot.
Answer:
26
Step-by-step explanation:
Because DAC is a straight line we can equate that:
4x - 8 + 34 + 76 - x = 180
3x + 102 = 180
3x = 78
x = 26
Answer:
81.63
Step-by-step explanation:
40: 49*100 =
(40*100): 49 =
4000: 49 = 81.63
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get