Answers for "Different ways to create Pandas Dataframe"

24

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
0

Different ways to create Pandas Dataframe

# Import pandas library
import pandas as pd
 
# initialize list of lists
data = [['tom', 10], ['nick', 15], ['juli', 14]]
 
# Create the pandas DataFrame
df = pd.DataFrame(data, columns = ['Name', 'Age'])
 
# print dataframe.
df
Posted by: Guest on August-11-2021
5

creating a pandas df

>>> d = {'col1': [1, 2], 'col2': [3, 4]}
>>> df = pd.DataFrame(data=d)
>>> df
   col1  col2
0     1     3
1     2     4
Posted by: Guest on September-20-2020

Code answers related to "Different ways to create Pandas Dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language