-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
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
Pandas Exercises Solution #67
Comments
I can confirm this. Also, in the Describing Data with Pandas section:
|
I just wanted to add to this as well because I had similar problems starting in Section 6 - Lesson 53 and Lesson 55 with using car_sales.mean() and car_sales.groupby(["Make"]).mean(). I just wanted to post the panda link to why this "TypeError" occurs for those who come across this problem. |
Hi everyone, This is my code: And this is the error explaination: AttributeError: module 'pandas' has no attribute 'read_csv' |
Re import pandas correctly |
In[24]
This does not work anymore
car_sales.groupby(["Make"]).mean()
The mean now needs a condition in order for it to work
car_sales.groupby(["Make"]).mean(numeric_only=True)
The text was updated successfully, but these errors were encountered: