Name | scikit-survival JSON |
Version |
0.25.0
JSON |
| download |
home_page | None |
Summary | Survival analysis built on top of scikit-learn |
upload_time | 2025-08-21 12:32:13 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | None |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
|License| |Docs| |DOI|
|build-tests| |build-windows| |Codecov| |Codacy|
***************
scikit-survival
***************
scikit-survival is a Python module for `survival analysis`_
built on top of `scikit-learn <https://scikit-learn.org/>`_. It allows doing survival analysis
while utilizing the power of scikit-learn, e.g., for pre-processing or doing cross-validation.
=======================
About Survival Analysis
=======================
The objective in `survival analysis`_ (also referred to as time-to-event or reliability analysis)
is to establish a connection between covariates and the time of an event.
What makes survival analysis differ from traditional machine learning is the fact that
parts of the training data can only be partially observed – they are *censored*.
For instance, in a clinical study, patients are often monitored for a particular time period,
and events occurring in this particular period are recorded.
If a patient experiences an event, the exact time of the event can
be recorded – the patient’s record is uncensored. In contrast, right censored records
refer to patients that remained event-free during the study period and
it is unknown whether an event has or has not occurred after the study ended.
Consequently, survival analysis demands for models that take
this unique characteristic of such a dataset into account.
============
Requirements
============
- Python 3.10 or later
- ecos
- joblib
- numexpr
- numpy
- osqp
- pandas 1.4.0 or later
- scikit-learn 1.6 or 1.7
- scipy
- C/C++ compiler
============
Installation
============
The easiest way to install scikit-survival is to use
`conda-forge <https://conda-forge.org/docs/user/introduction/>`_ by running::
conda install -c conda-forge scikit-survival
Alternatively, you can install scikit-survival `from PyPI <https://scikit-survival.readthedocs.io/en/stable/install.html#pip>`_
or `from source <https://scikit-survival.readthedocs.io/en/stable/install.html#from-source>`_.
========
Examples
========
The `user guide <https://scikit-survival.readthedocs.io/en/stable/user_guide/index.html>`_ provides
in-depth information on the key concepts of scikit-survival, an overview of available survival models,
and hands-on examples in the form of `Jupyter notebooks <https://jupyter.org/>`_.
================
Help and Support
================
**Documentation**
- HTML documentation for the latest release: https://scikit-survival.readthedocs.io/en/stable/
- HTML documentation for the development version (master branch): https://scikit-survival.readthedocs.io/en/latest/
- For a list of notable changes, see the `release notes <https://scikit-survival.readthedocs.io/en/stable/release_notes.html>`_.
**Bug reports**
- If you encountered a problem, please submit a
`bug report <https://github.com/sebp/scikit-survival/issues/new?template=bug_report.md>`_.
**Questions**
- If you have a question on how to use scikit-survival, please use `GitHub Discussions <https://github.com/sebp/scikit-survival/discussions>`_.
- For general theoretical or methodological questions on survival analysis, please use
`Cross Validated <https://stats.stackexchange.com/questions/tagged/survival>`_.
============
Contributing
============
New contributors are always welcome. Please have a look at the
`contributing guidelines <https://scikit-survival.readthedocs.io/en/latest/contributing.html>`_
on how to get started and to make sure your code complies with our guidelines.
==========
References
==========
Please cite the following paper if you are using **scikit-survival**.
S. Pölsterl, "scikit-survival: A Library for Time-to-Event Analysis Built on Top of scikit-learn,"
Journal of Machine Learning Research, vol. 21, no. 212, pp. 1–6, 2020.
.. code::
@article{sksurv,
author = {Sebastian P{\"o}lsterl},
title = {scikit-survival: A Library for Time-to-Event Analysis Built on Top of scikit-learn},
journal = {Journal of Machine Learning Research},
year = {2020},
volume = {21},
number = {212},
pages = {1-6},
url = {http://jmlr.org/papers/v21/20-729.html}
}
.. |License| image:: https://img.shields.io/badge/license-GPLv3-blue.svg
:target: COPYING
:alt: License
.. |Codecov| image:: https://codecov.io/gh/sebp/scikit-survival/branch/master/graph/badge.svg
:target: https://codecov.io/gh/sebp/scikit-survival
:alt: codecov
.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/17242004cdf6422c9a1052bf1ec63104
:target: https://app.codacy.com/gh/sebp/scikit-survival/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade
:alt: Codacy Badge
.. |Docs| image:: https://readthedocs.org/projects/scikit-survival/badge/?version=latest
:target: https://scikit-survival.readthedocs.io/en/latest/
:alt: readthedocs.org
.. |DOI| image:: https://zenodo.org/badge/77409504.svg
:target: https://zenodo.org/badge/latestdoi/77409504
:alt: Digital Object Identifier (DOI)
.. |build-tests| image:: https://github.com/sebp/scikit-survival/actions/workflows/tests-workflow.yaml/badge.svg?branch=master
:target: https://github.com/sebp/scikit-survival/actions?query=workflow%3Atests+branch%3Amaster
:alt: GitHub Actions Tests Status
.. |build-windows| image:: https://ci.appveyor.com/api/projects/status/github/sebp/scikit-survival?branch=master&svg=true
:target: https://ci.appveyor.com/project/sebp/scikit-survival
:alt: Windows Build Status on AppVeyor
.. _survival analysis: https://en.wikipedia.org/wiki/Survival_analysis
Raw data
{
"_id": null,
"home_page": null,
"name": "scikit-survival",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Sebastian P\u00f6lsterl <sebp@k-d-w.org>",
"download_url": "https://files.pythonhosted.org/packages/7f/b2/ada6b84a09d6309869f4aa3246990d074220a81abaad9aec959b75196ee3/scikit_survival-0.25.0.tar.gz",
"platform": null,
"description": "|License| |Docs| |DOI|\n\n|build-tests| |build-windows| |Codecov| |Codacy|\n\n***************\nscikit-survival\n***************\n\nscikit-survival is a Python module for `survival analysis`_\nbuilt on top of `scikit-learn <https://scikit-learn.org/>`_. It allows doing survival analysis\nwhile utilizing the power of scikit-learn, e.g., for pre-processing or doing cross-validation.\n\n=======================\nAbout Survival Analysis\n=======================\n\nThe objective in `survival analysis`_ (also referred to as time-to-event or reliability analysis)\nis to establish a connection between covariates and the time of an event.\nWhat makes survival analysis differ from traditional machine learning is the fact that\nparts of the training data can only be partially observed \u2013 they are *censored*.\n\nFor instance, in a clinical study, patients are often monitored for a particular time period,\nand events occurring in this particular period are recorded.\nIf a patient experiences an event, the exact time of the event can\nbe recorded \u2013 the patient\u2019s record is uncensored. In contrast, right censored records\nrefer to patients that remained event-free during the study period and\nit is unknown whether an event has or has not occurred after the study ended.\nConsequently, survival analysis demands for models that take\nthis unique characteristic of such a dataset into account.\n\n============\nRequirements\n============\n\n- Python 3.10 or later\n- ecos\n- joblib\n- numexpr\n- numpy\n- osqp\n- pandas 1.4.0 or later\n- scikit-learn 1.6 or 1.7\n- scipy\n- C/C++ compiler\n\n============\nInstallation\n============\n\nThe easiest way to install scikit-survival is to use\n`conda-forge <https://conda-forge.org/docs/user/introduction/>`_ by running::\n\n conda install -c conda-forge scikit-survival\n\nAlternatively, you can install scikit-survival `from PyPI <https://scikit-survival.readthedocs.io/en/stable/install.html#pip>`_\nor `from source <https://scikit-survival.readthedocs.io/en/stable/install.html#from-source>`_.\n\n========\nExamples\n========\n\nThe `user guide <https://scikit-survival.readthedocs.io/en/stable/user_guide/index.html>`_ provides\nin-depth information on the key concepts of scikit-survival, an overview of available survival models,\nand hands-on examples in the form of `Jupyter notebooks <https://jupyter.org/>`_.\n\n================\nHelp and Support\n================\n\n**Documentation**\n\n- HTML documentation for the latest release: https://scikit-survival.readthedocs.io/en/stable/\n- HTML documentation for the development version (master branch): https://scikit-survival.readthedocs.io/en/latest/\n- For a list of notable changes, see the `release notes <https://scikit-survival.readthedocs.io/en/stable/release_notes.html>`_.\n\n**Bug reports**\n\n- If you encountered a problem, please submit a\n `bug report <https://github.com/sebp/scikit-survival/issues/new?template=bug_report.md>`_.\n\n**Questions**\n\n- If you have a question on how to use scikit-survival, please use `GitHub Discussions <https://github.com/sebp/scikit-survival/discussions>`_.\n- For general theoretical or methodological questions on survival analysis, please use\n `Cross Validated <https://stats.stackexchange.com/questions/tagged/survival>`_.\n\n============\nContributing\n============\n\nNew contributors are always welcome. Please have a look at the\n`contributing guidelines <https://scikit-survival.readthedocs.io/en/latest/contributing.html>`_\non how to get started and to make sure your code complies with our guidelines.\n\n==========\nReferences\n==========\n\nPlease cite the following paper if you are using **scikit-survival**.\n\n S. P\u00f6lsterl, \"scikit-survival: A Library for Time-to-Event Analysis Built on Top of scikit-learn,\"\n Journal of Machine Learning Research, vol. 21, no. 212, pp. 1\u20136, 2020.\n\n.. code::\n\n @article{sksurv,\n author = {Sebastian P{\\\"o}lsterl},\n title = {scikit-survival: A Library for Time-to-Event Analysis Built on Top of scikit-learn},\n journal = {Journal of Machine Learning Research},\n year = {2020},\n volume = {21},\n number = {212},\n pages = {1-6},\n url = {http://jmlr.org/papers/v21/20-729.html}\n }\n\n.. |License| image:: https://img.shields.io/badge/license-GPLv3-blue.svg\n :target: COPYING\n :alt: License\n\n.. |Codecov| image:: https://codecov.io/gh/sebp/scikit-survival/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/sebp/scikit-survival\n :alt: codecov\n\n.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/17242004cdf6422c9a1052bf1ec63104\n :target: https://app.codacy.com/gh/sebp/scikit-survival/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade\n :alt: Codacy Badge\n\n.. |Docs| image:: https://readthedocs.org/projects/scikit-survival/badge/?version=latest\n :target: https://scikit-survival.readthedocs.io/en/latest/\n :alt: readthedocs.org\n\n.. |DOI| image:: https://zenodo.org/badge/77409504.svg\n :target: https://zenodo.org/badge/latestdoi/77409504\n :alt: Digital Object Identifier (DOI)\n\n.. |build-tests| image:: https://github.com/sebp/scikit-survival/actions/workflows/tests-workflow.yaml/badge.svg?branch=master\n :target: https://github.com/sebp/scikit-survival/actions?query=workflow%3Atests+branch%3Amaster\n :alt: GitHub Actions Tests Status\n\n.. |build-windows| image:: https://ci.appveyor.com/api/projects/status/github/sebp/scikit-survival?branch=master&svg=true\n :target: https://ci.appveyor.com/project/sebp/scikit-survival\n :alt: Windows Build Status on AppVeyor\n\n.. _survival analysis: https://en.wikipedia.org/wiki/Survival_analysis\n",
"bugtrack_url": null,
"license": null,
"summary": "Survival analysis built on top of scikit-learn",
"version": "0.25.0",
"project_urls": {
"Bug Tracker": "https://github.com/sebp/scikit-survival/issues",
"Documentation": "https://scikit-survival.readthedocs.io",
"Homepage": "https://github.com/sebp/scikit-survival",
"Release Notes": "https://scikit-survival.readthedocs.io/en/latest/release_notes.html",
"Source Code": "https://github.com/sebp/scikit-survival"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "4a6318464c9f5475becab40e39fd531d309f9261c73ba800dd436616a5abc26d",
"md5": "b1f55e86aa304b4ad25e011c471eaf48",
"sha256": "2e4a72ecee8aa573489310a5cb52d952a3af2ffb5241d7e5e2d5987cb20c74e2"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp310-cp310-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "b1f55e86aa304b4ad25e011c471eaf48",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 846846,
"upload_time": "2025-08-21T12:31:46",
"upload_time_iso_8601": "2025-08-21T12:31:46.026379Z",
"url": "https://files.pythonhosted.org/packages/4a/63/18464c9f5475becab40e39fd531d309f9261c73ba800dd436616a5abc26d/scikit_survival-0.25.0-cp310-cp310-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "228ee5e5e07c9fa9385373fadca1e03b04675910c6b8581d31c00a4ef8ba71ca",
"md5": "bb1e9207316f687b08571a180838023e",
"sha256": "9e0d747d7ffb194230962809d04fbbf48c956fb7bbaf18ca8f932d465feab98a"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb1e9207316f687b08571a180838023e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 818002,
"upload_time": "2025-08-21T12:31:48",
"upload_time_iso_8601": "2025-08-21T12:31:48.065626Z",
"url": "https://files.pythonhosted.org/packages/22/8e/e5e5e07c9fa9385373fadca1e03b04675910c6b8581d31c00a4ef8ba71ca/scikit_survival-0.25.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58e5bbc5e66e0be17afa54334f3e94ab2101734a9871f047726559af13873e0d",
"md5": "6de6138816fe061508f331ef358d6f08",
"sha256": "67eaac5bec142bf1533043d552747cc43879b99122906d5e4d4a2cd7b3f510b4"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "6de6138816fe061508f331ef358d6f08",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 3728986,
"upload_time": "2025-08-21T12:31:49",
"upload_time_iso_8601": "2025-08-21T12:31:49.955224Z",
"url": "https://files.pythonhosted.org/packages/58/e5/bbc5e66e0be17afa54334f3e94ab2101734a9871f047726559af13873e0d/scikit_survival-0.25.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5ef4d26f330284b774ca8832d52089762a4311f883c06ca91e9984f988f5749",
"md5": "017e4f620ff4a08cd993ae706b339506",
"sha256": "e11ac60022801c4de9b8216c29b7376e30c4bd5403a70fa4b73a12f3d746c8b8"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "017e4f620ff4a08cd993ae706b339506",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 803637,
"upload_time": "2025-08-21T12:31:51",
"upload_time_iso_8601": "2025-08-21T12:31:51.866576Z",
"url": "https://files.pythonhosted.org/packages/e5/ef/4d26f330284b774ca8832d52089762a4311f883c06ca91e9984f988f5749/scikit_survival-0.25.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c24b00d5b9808ae518c8f5257923a2ec96d66fc1fbce63183c1af5ebf459cf4c",
"md5": "143e72b9428f122296eb18ccc0792904",
"sha256": "e51c9a2102793297259c0034cf525e7ca6d93f5c188b26185d459b8693a5d168"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp311-cp311-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "143e72b9428f122296eb18ccc0792904",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 847263,
"upload_time": "2025-08-21T12:31:53",
"upload_time_iso_8601": "2025-08-21T12:31:53.548752Z",
"url": "https://files.pythonhosted.org/packages/c2/4b/00d5b9808ae518c8f5257923a2ec96d66fc1fbce63183c1af5ebf459cf4c/scikit_survival-0.25.0-cp311-cp311-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e23617851c8a5f216fbd41d95344144dc959658dd48e5a0a9b00a46100ef9c5",
"md5": "cbbbdd51d0410e5abba6da811de8e1e8",
"sha256": "97dd16b638ebb43f400bde822bb26734edff2de5979cd26857241ae80109466a"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cbbbdd51d0410e5abba6da811de8e1e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 818163,
"upload_time": "2025-08-21T12:31:54",
"upload_time_iso_8601": "2025-08-21T12:31:54.986312Z",
"url": "https://files.pythonhosted.org/packages/5e/23/617851c8a5f216fbd41d95344144dc959658dd48e5a0a9b00a46100ef9c5/scikit_survival-0.25.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9615ff4f473bbbe9e966e4df5b835c90289c4594b81c228c98bfa5ba71df5522",
"md5": "740eb9f39f8ba4226273e156bb0a3f8a",
"sha256": "cfc1114319033aa73140c819be8073d80ebf6870bbc63827cf6e20214226c0ee"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "740eb9f39f8ba4226273e156bb0a3f8a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 3878541,
"upload_time": "2025-08-21T12:31:56",
"upload_time_iso_8601": "2025-08-21T12:31:56.635309Z",
"url": "https://files.pythonhosted.org/packages/96/15/ff4f473bbbe9e966e4df5b835c90289c4594b81c228c98bfa5ba71df5522/scikit_survival-0.25.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ddb56bc59c5afff7e6e1c4dbcc381b1f111cb5fbd6ade07a6991ab58d3fca7c",
"md5": "3215912e032024116d1ffdba42fe6b20",
"sha256": "077329d17d7b6e49743bfc40feeef7fdad295e4a658155c90a1388aa6e22feda"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3215912e032024116d1ffdba42fe6b20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 803183,
"upload_time": "2025-08-21T12:31:58",
"upload_time_iso_8601": "2025-08-21T12:31:58.211708Z",
"url": "https://files.pythonhosted.org/packages/3d/db/56bc59c5afff7e6e1c4dbcc381b1f111cb5fbd6ade07a6991ab58d3fca7c/scikit_survival-0.25.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3013841267096c42355a3ec3721c291d5f8b8aee7bc4c364c55a5541d25c38d",
"md5": "dd7913c5e3edf34b20f1a1ebd379a5d2",
"sha256": "643a1abd9b9be65151cb2e4b37af5321e4126e2217b949b3a9fd96b1daf744ab"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "dd7913c5e3edf34b20f1a1ebd379a5d2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 850711,
"upload_time": "2025-08-21T12:31:59",
"upload_time_iso_8601": "2025-08-21T12:31:59.900670Z",
"url": "https://files.pythonhosted.org/packages/f3/01/3841267096c42355a3ec3721c291d5f8b8aee7bc4c364c55a5541d25c38d/scikit_survival-0.25.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f60473ee0c68d8d552f73d4e981a50c8b4f7a68ce53bacebcb3a04f0cfd52047",
"md5": "3639febc24fd031adb005ce7a34c8bf0",
"sha256": "3b294058e3f460852b9bdc2bef1c34bb98d7faea4a6a2ff363ed00e834786c0d"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3639febc24fd031adb005ce7a34c8bf0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 817426,
"upload_time": "2025-08-21T12:32:01",
"upload_time_iso_8601": "2025-08-21T12:32:01.702705Z",
"url": "https://files.pythonhosted.org/packages/f6/04/73ee0c68d8d552f73d4e981a50c8b4f7a68ce53bacebcb3a04f0cfd52047/scikit_survival-0.25.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "286a63c0f89c3d31d93d41a60113b9ed223581ec7d2a642cce692bb930fbadb7",
"md5": "82756fe1d768790284fe260f5a94a384",
"sha256": "c096f56aefd11ec3664315ca54bd408f04bbf85002ddf96e011c6a8586cf7370"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "82756fe1d768790284fe260f5a94a384",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 3870197,
"upload_time": "2025-08-21T12:32:03",
"upload_time_iso_8601": "2025-08-21T12:32:03.602126Z",
"url": "https://files.pythonhosted.org/packages/28/6a/63c0f89c3d31d93d41a60113b9ed223581ec7d2a642cce692bb930fbadb7/scikit_survival-0.25.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0ed62bd147d2ac663f134949bc8c2449d8fd849cf7bdc3515707c8fe21ee821",
"md5": "637f870e38a1414f41c28c0ecdeb8683",
"sha256": "f037f746fd6e0c65b132d6c1c963ae5711682d00492ef17c3d3eff022d609211"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "637f870e38a1414f41c28c0ecdeb8683",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 808908,
"upload_time": "2025-08-21T12:32:05",
"upload_time_iso_8601": "2025-08-21T12:32:05.470240Z",
"url": "https://files.pythonhosted.org/packages/c0/ed/62bd147d2ac663f134949bc8c2449d8fd849cf7bdc3515707c8fe21ee821/scikit_survival-0.25.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55fa0c5c0ddff5691ddaa8ee7057e1d295da3c780d5ab93e116b6b6b0f3f4ceb",
"md5": "c6010222b187c40fc13c70484d0cc807",
"sha256": "feb2e3f989698057c0607f83baa851e2a8fd9dabe6226e4c9b2b6696437d39c6"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c6010222b187c40fc13c70484d0cc807",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 844697,
"upload_time": "2025-08-21T12:32:06",
"upload_time_iso_8601": "2025-08-21T12:32:06.871682Z",
"url": "https://files.pythonhosted.org/packages/55/fa/0c5c0ddff5691ddaa8ee7057e1d295da3c780d5ab93e116b6b6b0f3f4ceb/scikit_survival-0.25.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13c8db45aaa1a38e44aef8817f24faf6f71874dd90bea976239986e37a859f44",
"md5": "f2ef20465c58434c0a476dc432e805e5",
"sha256": "8ea46d6febf3ecbaf6505719fd1f64837d1da4ba44844024c7a3c11fdb341a46"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f2ef20465c58434c0a476dc432e805e5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 811782,
"upload_time": "2025-08-21T12:32:08",
"upload_time_iso_8601": "2025-08-21T12:32:08.465593Z",
"url": "https://files.pythonhosted.org/packages/13/c8/db45aaa1a38e44aef8817f24faf6f71874dd90bea976239986e37a859f44/scikit_survival-0.25.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "185d56777d75fb725a2f3b60a15c4c09e71992f34f578602394cafdf88c0925c",
"md5": "3fb6915801bfffe7a2e507f392e63489",
"sha256": "36fa49a6277d396da7bee6e4888eafc0aefd06ddd71c4148cdc0bb0ce2c10125"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "3fb6915801bfffe7a2e507f392e63489",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 3840165,
"upload_time": "2025-08-21T12:32:09",
"upload_time_iso_8601": "2025-08-21T12:32:09.947762Z",
"url": "https://files.pythonhosted.org/packages/18/5d/56777d75fb725a2f3b60a15c4c09e71992f34f578602394cafdf88c0925c/scikit_survival-0.25.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e11c8427a2fdc42bbd281194581e7ca7e463e682d29184e08cbd0682cbb5dff",
"md5": "822b89147b771d18d67fe5e6b2e74cbc",
"sha256": "73b0534c5065d4b77076dcea539ded50d2c7eca0a8143455aa4c9515a308fbf3"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "822b89147b771d18d67fe5e6b2e74cbc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 806948,
"upload_time": "2025-08-21T12:32:11",
"upload_time_iso_8601": "2025-08-21T12:32:11.485799Z",
"url": "https://files.pythonhosted.org/packages/1e/11/c8427a2fdc42bbd281194581e7ca7e463e682d29184e08cbd0682cbb5dff/scikit_survival-0.25.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fb2ada6b84a09d6309869f4aa3246990d074220a81abaad9aec959b75196ee3",
"md5": "0c0c05b1264599bfecdb078d30c0c10e",
"sha256": "8d4bfb4977012c533f99c0fb4b53eaf42958db6294b0c901618bb3c21b092dd4"
},
"downloads": -1,
"filename": "scikit_survival-0.25.0.tar.gz",
"has_sig": false,
"md5_digest": "0c0c05b1264599bfecdb078d30c0c10e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 2840667,
"upload_time": "2025-08-21T12:32:13",
"upload_time_iso_8601": "2025-08-21T12:32:13.326676Z",
"url": "https://files.pythonhosted.org/packages/7f/b2/ada6b84a09d6309869f4aa3246990d074220a81abaad9aec959b75196ee3/scikit_survival-0.25.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-21 12:32:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sebp",
"github_project": "scikit-survival",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"appveyor": true,
"lcname": "scikit-survival"
}