Skip to content

Commit ac4e0b0

Browse files
committed
1.numpy&pandas
1 parent 381c7de commit ac4e0b0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import numpy as np
2+
import pandas as pd
3+
4+
5+
# s = pd.Series([1,2,3,np.nan,44,1])
6+
# print(s)
7+
# print(type(s))
8+
9+
10+
dates = pd.date_range('20160101',periods=6)
11+
df = pd.DataFrame(np.random.randn(6,4),index=dates,columns=['a','b','c','d'])
12+
print(df)
13+
# print (type(df))
14+

0 commit comments

Comments
 (0)