PESTools / pestools

PESTools
12 stars 10 forks source link

Parsen with dataframe as input for res_df #61

Closed andyrich closed 2 years ago

andyrich commented 8 years ago

If you create a dataframe with the .res tool, all of the column names are capitalized. When using this as input into parsen, it does not recognize column names.

Something like this solves the problem: df.rename(columns=lambda x: x.lower(), inplace=True)