This is the (much more efficient) workaround which you're encouraged to use instead - nice one @CaioLCastro ! Use `concat` a single time outside the loop, rather than multiple times inside it
This is the (much more efficient) workaround which you're encouraged to use instead - nice one @CaioLCastro ! Use `concat` a single time outside the loop, rather than multiple times inside it
@pandas_dev @CaioLCastro Concat always made more sense. No point pretending something is inplace when it's not.
@pandas_dev @CaioLCastro It's like muscle memory for me to append multiple dfs in list then concating at the end