Hits: 148
How to format STRING in a Pandas DataFrame in Python
Formatting strings in a Pandas DataFrame in Python can be done by using string functions and the apply() function. This can be useful for cleaning and preprocessing data before analysis.
First, you need to import the Pandas library and create a DataFrame. For example, you can create a DataFrame with some sample data.
import pandas as pd
data = {'product': ['Apple', 'Banana', 'Cherry', 'Date'], 'price': [1.2, 2.3, 2.5, 1.7]}
df = pd.DataFrame(data)
Next, you can use string functions and the apply() function to format the strings in the DataFrame. For example, if you want to convert all the strings in the ‘product’ column to uppercase, you can use the following code:
df['product'] = df['product'].apply(lambda x: x.upper())
Alternatively, you can use the .str accessor and chain the method upper() to change the case of string
df['product'] = df['product'].str.upper()
You can also use other string functions such as lower() and title() to change the case of the strings in the DataFrame.
To strip whitespace from the beginning and end of the string in a column, you can use strip() function
df['product'] = df['product'].apply(lambda x: x.strip())
You can also use other string functions such as replace() and find() to format the strings in the DataFrame.
By formatting strings in a Pandas DataFrame, you can clean and preprocess your data to make it easier to work with. This can be especially helpful when working with large datasets or when preparing data for analysis.
In this Learn through Codes example, you will learn: How to format STRING in a Pandas DataFrame in Python.
Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.