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
In the 2014 data, the names of these columns are capitalized and all other years (I think) are lowercase. This causes issues in (at least) apply_func.
I don't have good ideas for a solution. I imagine it's a .upper() or .lower() call somewhere in read_replicate_file or get_replicate_data. A comprehension might be needed as well?
The text was updated successfully, but these errors were encountered:
Good idea to always convert to the same case. It is probably not worth the extra code to test for capitalization, just run upper on these three column names for all files read in with read_replicate_file.
In the 2014 data, the names of these columns are capitalized and all other years (I think) are lowercase. This causes issues in (at least) apply_func.
I don't have good ideas for a solution. I imagine it's a
.upper()
or.lower()
call somewhere in read_replicate_file or get_replicate_data. A comprehension might be needed as well?The text was updated successfully, but these errors were encountered: