Answers for "create pandas dataframe in python"

2

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
Posted by: Guest on May-05-2021
25

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
Posted by: Guest on May-14-2020
6

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})
Posted by: Guest on March-21-2020
0

pandas make new dataframe

df = pd.DataFrame({'column1':[1,2,3],'column2':[4,5,6])
Posted by: Guest on April-06-2021
0

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'])
Posted by: Guest on August-02-2021

Code answers related to "create pandas dataframe in python"

Python Answers by Framework

Browse Popular Code Answers by Language