обычно:
Код: Выделить всё
import pandas as pd
data = {1:2, 2:6 ,4:5}
pd.Series(data).plot();
Подробнее здесь: https://stackoverflow.com/questions/791 ... dictionary
Код: Выделить всё
import pandas as pd
data = {1:2, 2:6 ,4:5}
pd.Series(data).plot();