I read data from a .csv file to a Pandas dataframe as below. For one of the columns, namely id, I want to specify the column type as int. The probl
id
int
import pandas as pd df= pd.read_csv("data.csv") df['id'] = pd.to_numeric(df['id'])