Answers for "pd.DataFrame array to DataFrame"

4

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
Posted by: Guest on May-07-2020
5

dataframe from arrays python

import pandas as pd
df=pd.DataFrame({'col1':vect1,'col2':vect2})
Posted by: Guest on March-20-2020
1

convert pandas dataframe to numpy dataframe

DataFrame.to_numpy(dtype=None, copy=False, na_value=<object object>)
Posted by: Guest on April-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language