Answers for "pandas convert dtype in column to dtype from another column"

2

set type of column pandas

df.astype(int)
Posted by: Guest on November-30-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 convert dtype in column to dtype from another column"

Python Answers by Framework

Browse Popular Code Answers by Language