Answers for "pandas to numpy matrix"

3

numpy arrauy to df

numpy_data = np.array([[1, 2], [3, 4]])
df = pd.DataFrame(data=numpy_data, index=["row1", "row2"], columns=["column1", "column2"])
print(df)
Posted by: Guest on September-10-2020
0

convert a pandas df to a numpy array

x = df.to_numpy()
x
Posted by: Guest on August-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language