Answers for "pandas define data type of column"

1

how to find the datatype of a dataframe in python

df.dtypes
Posted by: Guest on May-20-2020
4

set column datatype pandas

df = pd.read_csv("weather.tsv", sep="t",  
                 dtype={'Day': str,'Wind':int64})
df.dtypes
Posted by: Guest on October-14-2020

Code answers related to "pandas define data type of column"

Python Answers by Framework

Browse Popular Code Answers by Language