Horje
how to create dataframe in python Code Example
how to create dataframe in python
import pandas as pd
  
# intialise data of lists.
data = {'Name':['Tom', 'nick', 'krish', 'jack'],
        'Age':[20, 21, 19, 18]}
  
# Create DataFrame
df = pd.DataFrame(data)
  
# Print the output.
df
create dataframe with column names pandas
In [4]: import pandas as pd
In [5]: df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
In [6]: df
Out[6]:
Empty DataFrame
Columns: [A, B, C, D, E, F, G]
Index: []
dataframe create
>>> df2 = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]),
...                    columns=['a', 'b', 'c'])
>>> df2
   a  b  c
0  1  2  3
1  4  5  6
2  7  8  9
create a dataframe python
import numpy as np
import pandas as pd
vect1=np.zeros(10)
vect2=np.ones(10)
df=pd.DataFrame({'col1':vect1,'col2':vect2})
create a dataframe python
import pandas as pd
import numpy as np
df = pd.DataFrame(np.array([[1, 2, 3, 5], [4, 5, 6, 7], [7, 8, 9, 1]]), 
                  columns=['a', 'b', 'c', 'd'])
pandas make new dataframe
df = pd.DataFrame({'column1':[1,2,3],'column2':[4,5,6])




Python

Related
python shuffle list Code Example python shuffle list Code Example
print all keys having same value Code Example print all keys having same value Code Example
python remove empty string from list Code Example python remove empty string from list Code Example
get the torch version Code Example get the torch version Code Example
grid search python Code Example grid search python Code Example

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