Skip to content
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

chp6の微修正 #1

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

MizusakoSadanobu
Copy link

元のコードを手元で動かしたところ、ch6/utils.pyの下記箇所でエラーが出ました。result_dfのest2列に文字列が含まれており、mean()を実行できないことが原因です。

sample_mean = DataFrame(result_df.groupby(["est"]).mean().value).reset_index()

以下に修正することで、エラーなく意図した結果が出せるのではないかと思いました。

sample_mean = result_df.groupby(["est"], as_index=False).value.mean()

手元の環境では問題なく動作し、出力されるグラフもオリジナルのものと大きく変わらないことを確認しています。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant