Pandas dataframes are quite powerful for dealing with two-dimensional data in python. There are a number of ways to create a pandas dataframe, one of which is to use data from a dictionary. In this tutorial, we’ll look at how to create a pandas dataframe from a dictionary with some examples.
The pandas.DataFrame.from_dict()
function
The pandas.DataFrame.from_dict()
function is used to create a dataframe from a dict object. The dictionary should be of the form {field: array-like}
or {field: dict}
. The following is its syntax:
df = pandas.DataFrame.from_dict(data)
By default, it creates a dataframe with the keys of the dictionary as column names and their respective array-like values as the column values. If you want the dictionary keys to be row indexes instead, pass 'index'
to the orient
parameter (which is 'columns'
by default).
Examples:
Let’s look at some of the examples to better understand its usage –
1. Pandas dataframe from dict with keys as columns
import pandas as pd
# dictionary storing the data
data = {
"Name": ["Jim", "Dwight", "Angela", "Tobi"],
"Age": [26, 28, 27, 32],
"Department": ["Sales", "Sales", "Accounting", "Human Resources"]
}
# dataframe from dict
df = pd.DataFrame.from_dict(data)
# print the dataframe
print(df)
Output:
Name Age Department
0 Jim 26 Sales
1 Dwight 28 Sales
2 Angela 27 Accounting
3 Tobi 32 Human Resources
In the above example, the dataframe df
is constructed from the dictionary data
. And by default, the keys of the dict are treated as column names and their values as respective column values by the pandas dataframe from_dict()
function.
2. Pandas dataframe from dict with keys as row indexes
The parameter orient
tells the function about the orientation of the data. It takes 'columns'
or 'index'
and is 'columns'
by default. If the keys in your dictionary represent row indexes then pass orient='index'
import pandas as pd
# dictionary storing the data
data = {
"Jim": [26, "Sales"],
"Dwight": [28, "Sales"],
"Angela": [27, "Accounting"],
"Tobi": [32, "Human Resources"]
}
# dataframe from dict
df = pd.DataFrame.from_dict(data, orient='index')
# print the dataframe
print(df)
Output:
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
0 1
Jim 26 Sales
Dwight 28 Sales
Angela 27 Accounting
Tobi 32 Human Resources
The created dataframe has keys as row indexes.
You can also pass the column names as a list to the columns
parameter when creating a dataframe with orient='index'
import pandas as pd
# dictionary storing the data
data = {
"Jim": [26, "Sales"],
"Dwight": [28, "Sales"],
"Angela": [27, "Accounting"],
"Tobi": [32, "Human Resources"]
}
# dataframe from dict
df = pd.DataFrame.from_dict(data, orient='index', columns=['Age', 'Department'])
# print the dataframe
print(df)
Output:
Age Department
Jim 26 Sales
Dwight 28 Sales
Angela 27 Accounting
Tobi 32 Human Resources
In the above example, you can see that we have 'Age'
and 'Department'
as columns names instead of the default labels.
For more on the pandas.DataFrame.from_dict()
function refer to its official documentation.
With this, we come to the end of this tutorial. The code examples and results presented in this tutorial have been implemented in a Jupyter Notebook with a python (version 3.8.3) kernel having pandas version 1.0.5
More on Pandas DataFrames –
- Pandas – Sort a DataFrame
- Change Order of Columns of a Pandas DataFrame
- Pandas DataFrame to a List in Python
- Pandas – Count of Unique Values in Each Column
- Pandas – Replace Values in a DataFrame
- Pandas – Filter DataFrame for multiple conditions
- Pandas – Random Sample of Rows
- Pandas – Random Sample of Columns
- Save Pandas DataFrame to a CSV file
- Pandas – Save DataFrame to an Excel file
- Create a Pandas DataFrame from Dictionary
- Convert Pandas DataFrame to a Dictionary
- Drop Duplicates from a Pandas DataFrame
- Concat DataFrames in Pandas
- Append Rows to a Pandas DataFrame
- Compare Two DataFrames for Equality in Pandas
- Get Column Names as List in Pandas DataFrame
- Select One or More Columns in Pandas
- Pandas – Rename Column Names
- Pandas – Drop one or more Columns from a Dataframe
- Pandas – Iterate over Rows of a Dataframe
- How to Reset Index of a Pandas DataFrame?
- Read CSV files using Pandas – With Examples
- Apply a Function to a Pandas DataFrame
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.