Adding source code files for Chapter 6
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
df = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6]]))
|
||||
print(df)
|
||||
|
||||
data = np.array([['', 'Col1', 'Col2'],
|
||||
['Row1', 1, 2],
|
||||
['Row2', 3, 4]])
|
||||
|
||||
print(pd.DataFrame(data=data[1:, 1:],
|
||||
index=data[1:, 0],
|
||||
columns=data[0, 1:]))
|
||||
Reference in New Issue
Block a user