How can I manage units in pandas data?
There isn’t any great way to do this right now, see github issue here for some discussion. As a quick hack, could do something like this, maintaining a separate dict with the units. In [3]: units = {} In [5]: newcols = [] …: for col in df: …: name, unit = col.split(‘ ‘) …: … Read more