Import pandas DataFrame column as string not int

Learn, importing pandas DataFrame column as string not int.
Submitted by Pranit Sharma, on July 02, 2022

Pandas is a special tool that allows us to perform complex manipulations of data effectively and efficiently. Inside pandas, we mostly deal with a dataset in the form of DataFrame. DataFrames are 2-dimensional data structures in pandas. DataFrames consist of rows, columns, and data.

Sometimes we need to import a CSV file and we want the columns as strings, not int, for this purpose while importing the CSV file, we define a dictionary inside the read_csv() method. This dictionary consists of a key that has the column name and the values which have their dtype.

To work with pandas, we need to import pandas package first, below is the syntax:

import pandas as pd

Let us understand with the help of an example,

Python code to import pandas DataFrame column as string not int

# Importing pandas package
import pandas as pd

# Importing a csv file
data = pd.read_csv('D:/mycsv1.csv', dtype={'A':object})

# Creating a DataFrame
df = pd.DataFrame(data)

# Display DataFrame
print("Created DataFrame:\n",df,"\n")

# Check the dtype of each colum
print("Data Types:\n",df.dtypes)

Output:

Example: Import pandas DataFrame column as string not int

Python Pandas Programs »



ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.