Skip to content

Commit

Permalink
Fix exp. Weibull example, create new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaselsteiner committed Jan 8, 2020
1 parent 99608c2 commit f64449c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions examples/fit_exponentiated_weibull_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ def read_dataset(path='examples/datasets/A.txt'):
deltas = [0.01, 0.01] # Dimensions of the grid cells.
hdens_contour = HighestDensityContour(mul_dist, tr, ts, limits, deltas)

# Plot the contour.
plt.scatter(hdens_contour.coordinates[0][0], hdens_contour.coordinates[0][1])
# Plot the data and the contour.
plt.scatter(sample_tz, sample_hs, c='black')
plt.scatter(hdens_contour.coordinates[0][1], hdens_contour.coordinates[0][0])
plt.xlabel('zero-up-crossing period [s]')
plt.ylabel('significant wave height (m)')

Expand Down
2 changes: 1 addition & 1 deletion viroconcom/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.2.3'
__version__ = '1.2.4'

0 comments on commit f64449c

Please sign in to comment.