Introduction to Pandas
Brief introduction to the data structrue and grammars of Pandas
Preface
1. Data structure
1.1 Series
1.1.1 Creation:
s = pd.Series(data, index=index)
From ndarray:
s = pd.Series(np.random.randn(5), index=['a', 'b', 'c', 'd', 'e'])
From dict:
d = {'b' : ...