# View more python tutorials on my Youtube and Youku channel!!! # Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg # Youku video tutorial: http://i.youku.com/pythontutorial """ Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly. """ from __future__ import print_function import pandas as pd import numpy as np dates = pd.date_range('20130101', periods=6) df = pd.DataFrame(np.random.randn(6,4), index=dates, columns=['A', 'B', 'C', 'D']) df.iloc[2,2] = 1111 df.loc['2013-01-03', 'D'] = 2222 df.A[df.A>0] = 0 df['F'] = np.nan df['G'] = pd.Series([1,2,3,4,5,6], index=pd.date_range('20130101', periods=6)) print(df)