How to change column names in Python?
In today’s quick tutorial we’ll learn how to modify column names in Python Pandas dataframes. Consider the following very simple Pandas DataFrame that we are going to use in our examples. Let us look into the columns names. Index([‘DSCITY’, ‘MNTP’, ‘MXTP’], dtype=’object’) As you can see the column names have technical names which we might …