74.4k views
0 votes
7. 12, 24, 4, 18, 12, 9

Using the data, create a histogram.

User Wilfried
by
4.8k points

1 Answer

5 votes

Answer:

import pandas as pd

vec = pd.Series([7.12,24,4,18,12,9])

vec.plot(kind = 'hist')

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

7. 12, 24, 4, 18, 12, 9 Using the data, create a histogram.-example-1
User Eralper
by
5.0k points