In [1]:
import numpy as np
import pandas as pd
from pandas import Series,DataFrame
In [2]:
years = [1990,1991,1992,2008,2012,2015,1987,1969,2013,2008,1999]
In [3]:
decade_bins = [1960,1970,1980,1990,2000,2010,2020]
In [4]:
decade_cat = pd.cut(years,decade_bins)
decade_cat
Out[4]:
In [6]:
decade_cat.categories
Out[6]:
In [7]:
pd.value_counts(decade_cat)
Out[7]:
In [8]:
pd.cut(years,2,precision=1)
Out[8]:
In [ ]: