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
fix: use iterrows to iterate pandas dataframe (#2011)
itertuples doesn't return named tuples with large number of column(>254)
with python versions < 3.7. See:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.itertuples.html
row._asdict() would fail with regular tuples. Switching to iterrows here
to avoid this limitation.
Co-authored-by: Rui Wang Napieralski <wru@amazon.com>
Co-authored-by: Ajay Karpur <akarpur@amazon.com>
0 commit comments