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

Update stats_scipy_get_distributions.py #667

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/stats_scipy_get_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def show_dist(d):
pass
result +="|] \n"
result +=");\n"
print result
print(result)
pass

distributions = [
Expand Down Expand Up @@ -474,10 +474,10 @@ def show_dist(d):
chi2(df=30.),
]

print "module M = Owl_stats"
print "let cdf_approximations = M.["
print("module M = Owl_stats")
print("let cdf_approximations = M.[")
for d in distributions:
show_dist(d)
pass
print "]"
print("]")

Loading