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
In the chapter, Data analysis in Python (https://github.com/MonashDataFluency/python-workshop-base/blob/master/workshops/docs/modules/working_with_data.md), the few bits have been updated and needs to be updated in the material too.
Under the heading: Groups in Pandas, calculating grouped means:
existing code: prints an error.
grouped_data.mean()
Updated code: explicitly specify to calculate grouped means for numerical columns only.
grouped_data.mean(numeric_only = True)
The text was updated successfully, but these errors were encountered:
The same changes must be made in the half-day and the full-day workshops.
Sorry, something went wrong.
No branches or pull requests
In the chapter, Data analysis in Python (https://github.com/MonashDataFluency/python-workshop-base/blob/master/workshops/docs/modules/working_with_data.md), the few bits have been updated and needs to be updated in the material too.
Under the heading: Groups in Pandas, calculating grouped means:
existing code: prints an error.
grouped_data.mean()
Updated code: explicitly specify to calculate grouped means for numerical columns only.
grouped_data.mean(numeric_only = True)
The text was updated successfully, but these errors were encountered: