Pandas DataFrames

One-Hot Encoding in Machine Learning with Python Cover Image

One-Hot Encoding in Machine Learning with Python

Feature engineering is an essential part of machine learning and deep learning and one-hot encoding is one of the most important ways to transform your data’s features. This guide will teach you all you need about one hot encoding in machine learning using Python. You’ll learn grasp not only the “what” and “why”, but also […]

One-Hot Encoding in Machine Learning with Python Read More »

Move a Pandas DataFrame Column to Position (Start and End) Cover Image

Move a Pandas DataFrame Column to Position (Start and End)

Being able to work with and manipulate Pandas DataFrames is an essential skill for anyone working in data analysis or data science. As Pandas becomes the ubiquitous tool for data analysts, being able to get DataFrames ready for presentation is important. In this tutorial, you’ll learn how to use Pandas to move a DataFrame column

Move a Pandas DataFrame Column to Position (Start and End) Read More »

Transforming Pandas Columns with map and apply Cover Image

Transforming Pandas Columns with map and apply

In this tutorial, you’ll learn how to transform your Pandas DataFrame columns using vectorized functions and custom functions using the map and apply methods. By the end of this tutorial, you’ll have a strong understanding of how Pandas applies vectorized functions and how these are optimized for performance. You’ll also learn how to use custom

Transforming Pandas Columns with map and apply Read More »

Data Cleaning and Preparation in Pandas and Python Cover Image

Data Cleaning and Preparation in Pandas and Python

In this tutorial, you’ll learn how to clean and prepare data in a Pandas DataFrame. You’ll learn how to work with missing data, how to work with duplicate data, and dealing with messy string data. Being able to effectively clean and prepare a dataset is an important skill. Many data scientists estimate that they spend

Data Cleaning and Preparation in Pandas and Python Read More »