Skip to content

Commit

Permalink
Merge pull request #222 from stevenmanton/use_setuptools
Browse files Browse the repository at this point in the history
Use setuptools
  • Loading branch information
CamDavidsonPilon committed Jan 21, 2016
2 parents 7f2a67d + 4f848e3 commit d209754
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
*.pyc
*.so
build
dist
*.egg-info
*.iml
2 changes: 1 addition & 1 deletion docs/Survival Regression.rst
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ of AUC, another common loss function, and is interpretted similarly:
* 1.0 is perfect concordance and,
* 0.0 is perfect anti-concordance (multiply predictions with -1 to get 1.0)

The measure is implemented in lifelines under `lifelines.statistics.concordance_index` and accepts the actual times (along with any censorships), and the predicted times.
The measure is implemented in lifelines under `lifelines.utils.concordance_index` and accepts the actual times (along with any censorships), and the predicted times.

Cross Validation
######################################
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
import sys

from distutils.core import setup
from setuptools import setup


# Utility function to read the README file.
Expand Down

0 comments on commit d209754

Please sign in to comment.