change column type dataframe code example
Example 1: how to change the columns of a dataframe in python
new_columns = {"col1": "1st", "col2": "2nd"}
df_new = df.rename(columns=new_columns)
"""
col1 | col2 | col3 1st | 2nd | col3
a | d | g a | d | g
b | e | h => b | e | h
c | f | i c | f | i
"""
Example 2: set column datatype pandas
df = pd.read_csv("weather.tsv", sep="\t",
dtype={'Day': str,'Wind':int64})
df.dtypes