First page Back Continue Last page Overview Image

Line Plot with Alpha Index

import pandas as pd

fruits = ['apples', 'oranges', 'cherries', 'pears']

quantities = [20, 33, 52, 10]

S = pd.Series(quantities, index=fruits)

S.plot()