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
all = pd.concat([df.t1_ga_weeks, df.t2_ga_weeks, df.t3_ga_weeks]) all.dropna(inplace=True) print(all.describe()) print("Less than 0: {}".format(len(all[all < 0]))) all = all[all > 0] all.hist(bins=60).plot() plt.show()
count 132110.000000 mean 21.731330 std 9.672369 min -264.857143 25% 12.857143 50% 21.428571 75% 22.857143 max 42.857143 dtype: float64 Less than 0: 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: