Pandas replace values in column

In this article, we will discuss how to replace values in column of pandas dataframe.

Using the loc() function to replace values in column of pandas DataFrame

The loc() function is used to access values based on column names and row values. We can use this function to access the required value and provide the new value using the = operator.

For example,

Output:

In the above example, we changed Jay to Jack in column a.

We can use this function to replace values based on some conditions also.

See the following example.

Output:

In the above example, we found all the values below 75 in column b and replaced them with 60.

Using the iloc() function to to replace values in column of pandas DataFrame

The iloc() function is similar to the loc() function and can be used to access columns and rows of a DataFrame. It uses the index of the values instead of their labels.

For example,

Output:

Using the map() function to replace values of a column in a pandas DataFrame

The map() function can apply some function or collector on all the elements of a Series object or a DataFrame. We can use it to detect and replace values of a column in a DataFrame. We have to specify the old and new values within the function.

For example,

Output:

Note that we also need to name the element we do not wish to replace otherwise, they will get replaced with the NaN constant.

Using the replace() function to replace values in column of pandas DataFrame

This probably the most straightforward method to replace the values of a column. We can use the replace() function to replace one or more values in a DataFrame.

In the following example, we will replace multiple values with one value.

Output:

Similarly, we can replace multiple values with different values for each.

For example,

Output:

This function can also be applied to the whole DataFrame.

Using the where() function to replace values in column of pandas DataFrame

The where() function checks the DataFrame to detect some values based on a given condition. We can replace the values which satisfy the given condition with some new value.

See the following example.

Output:

The above example replaces all values less than 80 with 60.

Using the numpy.where() function to to replace values in column of pandas DataFrame

The where() function from the numpy module is generally used with arrays only. However, since we need to change the values of a column, we can use this function with a pandas DataFrame also.

This method works similarly to the method discussed previously.

For example,

Output:

That’s all about how to replace values in column of pandas DataFrame.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *