Respuesta :

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

Ver imagen cdchavezq