I have a numpy array with the following shape:
numpy_x.shape
(9982, 26)
I want turn this numpy to dataframe:
x_new_df = pd.DataFrame(numpy_x)
And my new dataframe is:
x_new_df
How to can I generate the dataframe with index and columns names?