You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2020. It is now read-only.
The DataFrame returned by the client has fips represented as an int64 but my understanding is they are better represented as 2 or 5 character strings. A quick fix that seems to work for me is df.fips = df.fips.apply(lambda v: f"{v:0>{2 if v < 100 else 5}}")
The
DataFramereturned by the client has fips represented as an int64 but my understanding is they are better represented as 2 or 5 character strings. A quick fix that seems to work for me isdf.fips = df.fips.apply(lambda v: f"{v:0>{2 if v < 100 else 5}}")