Answers for "convert numpy matrix to dataframe"

5

dataframe from arrays python

import pandas as pd
df=pd.DataFrame({'col1':vect1,'col2':vect2})
Posted by: Guest on March-20-2020
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

Code answers related to "convert numpy matrix to dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language