CSCI128 / 101GradingScript

Script designed to move grades between Gradescope and Canvas
https://gradingscript.trihardstudios.com/#/
0 stars 0 forks source link

Fix Deprecation Warning for Pandas.Dataframe #17

Closed gregbell26 closed 2 years ago

gregbell26 commented 2 years ago

Change Pandas.Dataframe.Append to Pandas.Dataframe.Concat as append is being deprecated.

Should be able to use join='outer', index=0 to replicate the same functionality as we got with append.