Horje
convert array to dataframe python Code Example
convert numpy array to dataframe
import numpy as np
import pandas as pd

my_array = np.array([[11,22,33],[44,55,66]])

df = pd.DataFrame(my_array, columns = ['Column_A','Column_B','Column_C'])

print(df)
print(type(df))
convert array to dataframe python
np.random.seed(123)
e = np.random.normal(size=10)  
dataframe=pd.DataFrame(e, columns=['a']) 
print (dataframe)
          a
0 -1.085631
1  0.997345
2  0.282978
3 -1.506295
4 -0.578600
5  1.651437
6 -2.426679
7 -0.428913
8  1.265936
9 -0.866740

e_dataframe=pd.DataFrame({'a':e}) 
print (e_dataframe)
          a
0 -1.085631
1  0.997345
2  0.282978
3 -1.506295
4 -0.578600
5  1.651437
6 -2.426679
7 -0.428913
8  1.265936
9 -0.866740




Python

Related
get last year of today python Code Example get last year of today python Code Example
pandas create column from another column Code Example pandas create column from another column Code Example
timedelta year python Code Example timedelta year python Code Example
matplotlib 3.0.3 wheel file Code Example matplotlib 3.0.3 wheel file Code Example
how to add input box in tkinter Code Example how to add input box in tkinter Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6