We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File mock_context.py contains
def get_dataframe(self, num_rows='all', start_col=0): # ... df = df.append(df_current)
... which raises the warning "The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.", see https://stackoverflow.com/questions/70837397/good-alternative-to-pandas-append-method-now-that-it-is-being-deprecated
The current ticket therefore requests to replace this code by
def get_dataframe(self, num_rows='all', start_col=0): # ... df = pd.concat([df, df_current])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
File mock_context.py contains
... which raises the warning "The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.", see https://stackoverflow.com/questions/70837397/good-alternative-to-pandas-append-method-now-that-it-is-being-deprecated
The current ticket therefore requests to replace this code by
The text was updated successfully, but these errors were encountered: