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

There are scans with the gestational age in weeks < 0 #4

Open
jurasource opened this issue Jan 4, 2019 · 0 comments
Open

There are scans with the gestational age in weeks < 0 #4

jurasource opened this issue Jan 4, 2019 · 0 comments

Comments

@jurasource
Copy link
Contributor

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

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

No branches or pull requests

1 participant