Skip to content

Commit

Permalink
Release 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
julianspaeth committed Oct 16, 2019
1 parent 059a3af commit 2cfdfa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion random_survival_forest/Node.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def compute_terminal_node(self):
self.chf = NelsonAalenFitter()
t = self.y.iloc[:, 0]
e = self.y.iloc[:, 1]
self.chf.fit(t, event_observed=e, timeline=self.tree.timeline)
self.chf.fit(t, event_observed=e)

return self

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setup(
name='random_survival_forest', # How you named your package folder (MyLib)
packages=['random_survival_forest'], # Chose the same as "name"
version='0.5', # Start with a small number and increase it with every change you make
version='0.6.0', # Start with a small number and increase it with every change you make
license="MIT License", # Chose a license from here: https://help.github.com/articles/licensing-a-repository
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 2cfdfa2

Please sign in to comment.