Skip to content

Commit adf1825

Browse files
author
Mofan Zhou
committed
create pd13
1 parent 07eb50b commit adf1825

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

numpy&pandas/13_set_value.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# View more python tutorials on my Youtube and Youku channel!!!
2+
3+
# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
4+
# Youku video tutorial: http://i.youku.com/pythontutorial
5+
6+
import pandas as pd
7+
import numpy as np
8+
9+
dates = pd.date_range('20130101', periods=6)
10+
df = pd.DataFrame(np.random.randn(6,4), index=dates, columns=['A', 'B', 'C', 'D'])
11+
12+
df.iloc[2,2] = 1111
13+
df.loc['2013-01-03', 'D'] = 2222
14+
df.A[df.A>0] = 0
15+
df['F'] = np.nan
16+
df['G'] = pd.Series([1,2,3,4,5,6], index=pd.date_range('20130101', periods=6))
17+
print(df)

0 commit comments

Comments
 (0)