hazardous
Competing Risks and Survival Analysis
File Explorer
Download Latest Version (.zip)- pr_doc_preview.yml
- push_doc.yml
- test.yml
- custom.css
- empty_placeholder_to_avoid_sphinx_warning
- seer_extract.png
- seer_home.png
- class.rst
- function.rst
- announcement.html
- api.rst
- competing_risk_diagram.svg
- conf.py
- downloading_seer.rst
- index.rst
- install.rst
- make.bat
- Makefile
- plot_01_survival_analysis.py
- plot_02_marginal_cumulative_incidence_estimation.py
- plot_03_competing_risks.py
- plot_04_calibration_aj.py
- README.rst
- fake_seer_sample.txt
- test_competing_weibull.py
- test_seer.py
- __init__.py
- _competing_weibull.py
- _seer.py
- __init__.py
- _accuracy_in_time.py
- _aj_calibration.py
- _brier_score.py
- _concordance_index.py
- _km_calibration.py
- __init__.py
- test_acc_in_time.py
- test_aj_calibration.py
- test_cindex.py
- test_ipcw.py
- test_km_calibration.py
- test_metrics.py
- test_survival_boost.py
- __init__.py
- _ipcw.py
- _km_sampler.py
- _survival_boost.py
- utils.py
- VERSION.txt
- .gitignore
- .pre-commit-config.yaml
- CHANGES.rst
- LICENSE
- noxfile.py
- pyproject.toml
- README.md
# Installation Guide
git clone https://github.com/soda-inria/hazardous
Downloads the entire project code from GitHub to your computer.
cd hazardous
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install hazardous
Installs the package published on PyPI directly β no need to clone the source.
pip install flit
Installs the package published on PyPI directly β no need to clone the source.
pip install . -v
Installs the package published on PyPI directly β no need to clone the source.
pip install build
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install hazardous
Installs the package published on PyPI directly β no need to clone the source.
pip install flit
Installs the package published on PyPI directly β no need to clone the source.
pip install . -v
Installs the package published on PyPI directly β no need to clone the source.
pip install -e ".[dev]" --no-build-isolation -v
Installs the Python libraries listed in requirements.txt (or similar).
pip install -e ".[test]" --no-build-isolation -v
Installs the Python libraries listed in requirements.txt (or similar).
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make html
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
