Skip to content

Commit

Permalink
Fix bug with incorrect p-value threshold used to identify significant…
Browse files Browse the repository at this point in the history
… rates of change (#68)
  • Loading branch information
robbibt authored Oct 18, 2022
1 parent 5f2875c commit 1e99aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coastlines/continental.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def wms_fields(gdf):
wms_conf=gdf.se_time * 1.96,
wms_grew=gdf.rate_time < 0,
wms_retr=gdf.rate_time > 0,
wms_sig=gdf.sig_time <= 0,
wms_sig=gdf.sig_time <= 0.01,
)
)

Expand Down

0 comments on commit 1e99aca

Please sign in to comment.