optimal1dclustering


Nameoptimal1dclustering JSON
Version 1.0.1 PyPI version JSON
download
home_page
SummaryA Python package for Optimal 1D Clustering
upload_time2024-02-22 20:25:49
maintainerJan Meißner
docs_urlNone
authorJan Meißner, Daniel Steinberg
requires_python>=3.6
licenseMIT
keywords k-means k-median machine learning optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build Status](https://github.com/jan-meissner/optimal1dclustering/workflows/build/badge.svg)](https://github.com/jan-meissner/optimal1dclustering/actions)

optimal1dclustering
========
Add *k*-medians and add a minimum cluster size parameter to https://github.com/dstein64/kmeans1d.

A Python library with an implementation of *k*-means and *k*-medians clustering on 1D data, based on the algorithm
from Xiaolin (1991), as presented by Gronlund et al. (2017, Section 2.2).

The algorithm implemented in this library can also find the optimal clustering when clusters are required to have a 
minimum cluster size. It still finds the optimal clustering as the cost function is still monge concave.

Globally optimal clustering is NP-hard for multi-dimensional data. Lloyd's algorithm is a
popular approach for finding a locally optimal solution. For 1-dimensional data, there are polynomial
time algorithms. The algorithm implemented here is an *O(kn + n log n)* dynamic programming algorithm
for finding the globally optimal *k* clusters for *n* 1D data points.

The code is written in C++, and wrapped with Python.

Requirements
------------

*optimal1dclustering* supports Python 3.x.

Installation
------------

[optimal1dclustering](https://pypi.python.org/pypi/optimal1dclustering) is available on PyPI, the Python Package Index.

```sh
$ pip3 install optimal1dclustering
```

Example Usage
-------------

```python
import optimal1dclustering

x = [4.0, 4.1, 4.2, -50, 200.2, 200.4, 200.9, 80, 100, 102]
k = 4 # Number of clusters
min_cluster_size = 2 # The minimum number of elements in each cluster
mode = 2 # 2 for k-means; 1 for k-medians

clusters, centroids = optimal1dclustering.cluster(x, k, min_cluster_size = min_cluster_size, mode = mode)

print(clusters)   # [0, 1, 1, 0, 3, 3, 3, 2, 2, 2]
print(centroids)  # [-23.0, 4.15, 94.0, 200.5]
```

Tests
-----

Tests are in [tests/](https://github.com/jan-meissner/optimal1dclustering/blob/master/tests).

```sh
# Run tests
$ python3 -m unittest discover tests -v
```

Development
-----------

The underlying C++ code can be built in-place, outside the context of `pip`. This requires Python
development tools for building Python modules (e.g., the `python3-dev` package on Ubuntu). `gcc`,
`clang`, and `MSVC` have been tested.

```
$ python3 setup.py build_ext --inplace
```

The [packages](https://github.com/jan-meissner/optimal1dclustering/blob/master/.github/workflows/packages.yml)
GitHub action can be manually triggered (`Actions` > `packages` > `Run workflow`) to build wheels
and a source distribution.

License
-------

The code in this repository has an [MIT License](https://en.wikipedia.org/wiki/MIT_License).

See [LICENSE](https://github.com/jan-meissner/optimal1dclustering/blob/master/LICENSE).

References
----------

[1] Wu, Xiaolin. "Optimal Quantization by Matrix Searching." Journal of Algorithms 12, no. 4
(December 1, 1991): 663

[2] Gronlund, Allan, Kasper Green Larsen, Alexander Mathiasen, Jesper Sindahl Nielsen, Stefan Schneider,
and Mingzhou Song. "Fast Exact K-Means, k-Medians and Bregman Divergence Clustering in 1D."
ArXiv:1701.07204 [Cs], January 25, 2017. http://arxiv.org/abs/1701.07204.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "optimal1dclustering",
    "maintainer": "Jan Mei\u00dfner",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "philipp.meissner@rwth-aachen.de",
    "keywords": "k-means,k-median,machine learning,optimization",
    "author": "Jan Mei\u00dfner, Daniel Steinberg",
    "author_email": "philipp.meissner@rwth-aachen.de, ds@dannyadam.com",
    "download_url": "https://files.pythonhosted.org/packages/37/3b/bfe31bfcd4e75ea6ede25fbffab5ef4459c5115fd9d8ff371f648bcaf0cf/optimal1dclustering-1.0.1.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://github.com/jan-meissner/optimal1dclustering/workflows/build/badge.svg)](https://github.com/jan-meissner/optimal1dclustering/actions)\n\noptimal1dclustering\n========\nAdd *k*-medians and add a minimum cluster size parameter to https://github.com/dstein64/kmeans1d.\n\nA Python library with an implementation of *k*-means and *k*-medians clustering on 1D data, based on the algorithm\nfrom Xiaolin (1991), as presented by Gronlund et al. (2017, Section 2.2).\n\nThe algorithm implemented in this library can also find the optimal clustering when clusters are required to have a \nminimum cluster size. It still finds the optimal clustering as the cost function is still monge concave.\n\nGlobally optimal clustering is NP-hard for multi-dimensional data. Lloyd's algorithm is a\npopular approach for finding a locally optimal solution. For 1-dimensional data, there are polynomial\ntime algorithms. The algorithm implemented here is an *O(kn + n log n)* dynamic programming algorithm\nfor finding the globally optimal *k* clusters for *n* 1D data points.\n\nThe code is written in C++, and wrapped with Python.\n\nRequirements\n------------\n\n*optimal1dclustering* supports Python 3.x.\n\nInstallation\n------------\n\n[optimal1dclustering](https://pypi.python.org/pypi/optimal1dclustering) is available on PyPI, the Python Package Index.\n\n```sh\n$ pip3 install optimal1dclustering\n```\n\nExample Usage\n-------------\n\n```python\nimport optimal1dclustering\n\nx = [4.0, 4.1, 4.2, -50, 200.2, 200.4, 200.9, 80, 100, 102]\nk = 4 # Number of clusters\nmin_cluster_size = 2 # The minimum number of elements in each cluster\nmode = 2 # 2 for k-means; 1 for k-medians\n\nclusters, centroids = optimal1dclustering.cluster(x, k, min_cluster_size = min_cluster_size, mode = mode)\n\nprint(clusters)   # [0, 1, 1, 0, 3, 3, 3, 2, 2, 2]\nprint(centroids)  # [-23.0, 4.15, 94.0, 200.5]\n```\n\nTests\n-----\n\nTests are in [tests/](https://github.com/jan-meissner/optimal1dclustering/blob/master/tests).\n\n```sh\n# Run tests\n$ python3 -m unittest discover tests -v\n```\n\nDevelopment\n-----------\n\nThe underlying C++ code can be built in-place, outside the context of `pip`. This requires Python\ndevelopment tools for building Python modules (e.g., the `python3-dev` package on Ubuntu). `gcc`,\n`clang`, and `MSVC` have been tested.\n\n```\n$ python3 setup.py build_ext --inplace\n```\n\nThe [packages](https://github.com/jan-meissner/optimal1dclustering/blob/master/.github/workflows/packages.yml)\nGitHub action can be manually triggered (`Actions` > `packages` > `Run workflow`) to build wheels\nand a source distribution.\n\nLicense\n-------\n\nThe code in this repository has an [MIT License](https://en.wikipedia.org/wiki/MIT_License).\n\nSee [LICENSE](https://github.com/jan-meissner/optimal1dclustering/blob/master/LICENSE).\n\nReferences\n----------\n\n[1] Wu, Xiaolin. \"Optimal Quantization by Matrix Searching.\" Journal of Algorithms 12, no. 4\n(December 1, 1991): 663\n\n[2] Gronlund, Allan, Kasper Green Larsen, Alexander Mathiasen, Jesper Sindahl Nielsen, Stefan Schneider,\nand Mingzhou Song. \"Fast Exact K-Means, k-Medians and Bregman Divergence Clustering in 1D.\"\nArXiv:1701.07204 [Cs], January 25, 2017. http://arxiv.org/abs/1701.07204.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python package for Optimal 1D Clustering",
    "version": "1.0.1",
    "project_urls": null,
    "split_keywords": [
        "k-means",
        "k-median",
        "machine learning",
        "optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7602016d4c3b144f2c34c4a214a66809f1076c2416f00bf6e694783e37e0940e",
                "md5": "cb492316f3f72409114ca8c713e7303a",
                "sha256": "19f7697e068e5be8913124003aa71efa50a17f726a43f21a559995ae2c393296"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb492316f3f72409114ca8c713e7303a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 18044,
            "upload_time": "2024-02-22T20:25:17",
            "upload_time_iso_8601": "2024-02-22T20:25:17.078687Z",
            "url": "https://files.pythonhosted.org/packages/76/02/016d4c3b144f2c34c4a214a66809f1076c2416f00bf6e694783e37e0940e/optimal1dclustering-1.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cafec9cd45ce00efc52caef0cf78076152111040542b610429590b608b936585",
                "md5": "df10c722ddc2e5947b3e5cd753ea471b",
                "sha256": "afc3b04d36d1d69011355571a9f2c08e6e6dc9fbab575c674e89bf3cfb556200"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df10c722ddc2e5947b3e5cd753ea471b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 136063,
            "upload_time": "2024-02-22T20:25:18",
            "upload_time_iso_8601": "2024-02-22T20:25:18.883482Z",
            "url": "https://files.pythonhosted.org/packages/ca/fe/c9cd45ce00efc52caef0cf78076152111040542b610429590b608b936585/optimal1dclustering-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c01a12ce1228e8269e51d2811b4f61889fcec7d0efe8534d4960b000a8506a5",
                "md5": "0341caab8bee9a133bbe5da75fb83435",
                "sha256": "3f1ac6975a9c3e864a429892d93eeddc8954a14ff0d85112982ea02c423a0dcd"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0341caab8bee9a133bbe5da75fb83435",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 19847,
            "upload_time": "2024-02-22T20:25:20",
            "upload_time_iso_8601": "2024-02-22T20:25:20.740647Z",
            "url": "https://files.pythonhosted.org/packages/9c/01/a12ce1228e8269e51d2811b4f61889fcec7d0efe8534d4960b000a8506a5/optimal1dclustering-1.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "006d7db6229846b7f808292b2eb35bfa558d85559c943cf05358c4d938b346dd",
                "md5": "3bd0d9b116222b0a4b359c23b698b82f",
                "sha256": "9597e0dc0ee2b5ec0467cbfac03049d969c137a6272d06379626832dbf57eeda"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3bd0d9b116222b0a4b359c23b698b82f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 29537,
            "upload_time": "2024-02-22T20:25:22",
            "upload_time_iso_8601": "2024-02-22T20:25:22.963463Z",
            "url": "https://files.pythonhosted.org/packages/00/6d/7db6229846b7f808292b2eb35bfa558d85559c943cf05358c4d938b346dd/optimal1dclustering-1.0.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5fe9ce48d475b2f78441a6aafd0d1854452f2e4e5dfdc3245933f201bdbeee9",
                "md5": "b6293558d1901cdd643bed63640691f3",
                "sha256": "0290f314c46c3108b82d8344ead6720a401449b1acb0cb42062136321c9950f2"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6293558d1901cdd643bed63640691f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 136780,
            "upload_time": "2024-02-22T20:25:24",
            "upload_time_iso_8601": "2024-02-22T20:25:24.111875Z",
            "url": "https://files.pythonhosted.org/packages/f5/fe/9ce48d475b2f78441a6aafd0d1854452f2e4e5dfdc3245933f201bdbeee9/optimal1dclustering-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71baab10ae3cc3df359e458e39585455794cf51c55d08fc8dad9544a3c546146",
                "md5": "eadcd5dc821566bc98a4af08d4047aed",
                "sha256": "4586b0eb6bb9f3a9b0ac8eb288b59ea2ec3da07615e8d4399f9d0c6a56793141"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eadcd5dc821566bc98a4af08d4047aed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 19846,
            "upload_time": "2024-02-22T20:25:25",
            "upload_time_iso_8601": "2024-02-22T20:25:25.752183Z",
            "url": "https://files.pythonhosted.org/packages/71/ba/ab10ae3cc3df359e458e39585455794cf51c55d08fc8dad9544a3c546146/optimal1dclustering-1.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcfecacfd7210e3a4c0c0a6e180d03abbbcf317a0fed8a74deb2740f6cf6a4b0",
                "md5": "40c675b6ea51ebe1b607ba1d7150e371",
                "sha256": "cd3d6e39a51b097d577530212477077b805a207486e22b09c27f54e22fb1ffff"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "40c675b6ea51ebe1b607ba1d7150e371",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 29540,
            "upload_time": "2024-02-22T20:25:27",
            "upload_time_iso_8601": "2024-02-22T20:25:27.516447Z",
            "url": "https://files.pythonhosted.org/packages/dc/fe/cacfd7210e3a4c0c0a6e180d03abbbcf317a0fed8a74deb2740f6cf6a4b0/optimal1dclustering-1.0.1-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25823b15f5403ad59f0479372e21f2e1a6c3524970f232ebcb5f11195b478b62",
                "md5": "6354cbd21ac2cdabd69250a5b82ab916",
                "sha256": "a1b47d5e4c91aef4c6ede13d3fb496ce2cae50d706289a0ef674237c2f5ef88d"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6354cbd21ac2cdabd69250a5b82ab916",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 136529,
            "upload_time": "2024-02-22T20:25:28",
            "upload_time_iso_8601": "2024-02-22T20:25:28.678249Z",
            "url": "https://files.pythonhosted.org/packages/25/82/3b15f5403ad59f0479372e21f2e1a6c3524970f232ebcb5f11195b478b62/optimal1dclustering-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d79cfc7eb38e9a7e30e99ea2c2ee11114706eee481f1a1f0b2f64fb3cda92031",
                "md5": "51007183e773ae6e2f2c056847a6a1f1",
                "sha256": "d60118837410ca2fdf7e311290ed2538a4540c17e7cb1cadf1df7aaf61e1b6c3"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51007183e773ae6e2f2c056847a6a1f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 19846,
            "upload_time": "2024-02-22T20:25:30",
            "upload_time_iso_8601": "2024-02-22T20:25:30.168326Z",
            "url": "https://files.pythonhosted.org/packages/d7/9c/fc7eb38e9a7e30e99ea2c2ee11114706eee481f1a1f0b2f64fb3cda92031/optimal1dclustering-1.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dfe220fc89b1cae7d66430d3d230bb5315d9b199fcb11ce0752bca7acc37fd8",
                "md5": "29510c79525d9ff824fecc58b882ecbf",
                "sha256": "d8b190acef5db83959ed086dbc498054a16f46a0ef7f9e2c6f33cca7d18ea56c"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29510c79525d9ff824fecc58b882ecbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 17921,
            "upload_time": "2024-02-22T20:25:32",
            "upload_time_iso_8601": "2024-02-22T20:25:32.158250Z",
            "url": "https://files.pythonhosted.org/packages/3d/fe/220fc89b1cae7d66430d3d230bb5315d9b199fcb11ce0752bca7acc37fd8/optimal1dclustering-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ef1168405af2ec119dde8c32f3b0a35001bc6d3345047f2f5ff14c532e3d96",
                "md5": "34a7a47e9b3dddcc7b0ab2fe5716bd7e",
                "sha256": "40314e8ae17f07c7ae7519961887346f8fc8581bb129a8515204f101ffbe115a"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34a7a47e9b3dddcc7b0ab2fe5716bd7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 136175,
            "upload_time": "2024-02-22T20:25:34",
            "upload_time_iso_8601": "2024-02-22T20:25:34.494067Z",
            "url": "https://files.pythonhosted.org/packages/76/ef/1168405af2ec119dde8c32f3b0a35001bc6d3345047f2f5ff14c532e3d96/optimal1dclustering-1.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a05bcc81e931c0f473f8b0eb6ff92328171934a5ccdafce51d3510961f53dbed",
                "md5": "229574c89db4d41ee5d8a6379bceb9dc",
                "sha256": "062bba3db4d399a75a89ae4348be5b3b049d1e507a729bfd14710f2ed8f9aa6f"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "229574c89db4d41ee5d8a6379bceb9dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 19984,
            "upload_time": "2024-02-22T20:25:35",
            "upload_time_iso_8601": "2024-02-22T20:25:35.637822Z",
            "url": "https://files.pythonhosted.org/packages/a0/5b/cc81e931c0f473f8b0eb6ff92328171934a5ccdafce51d3510961f53dbed/optimal1dclustering-1.0.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8162f50a039e592e42876778e5b8a93b7d88537a07881bdea336240b428ca84b",
                "md5": "c0bf25e2cb8101bb24f76e7946f2c49b",
                "sha256": "60113fa8b50ca51f0bc13a4b6e6b28c5464030ce7a10fbfdc59de8806ddb4377"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0bf25e2cb8101bb24f76e7946f2c49b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 18063,
            "upload_time": "2024-02-22T20:25:37",
            "upload_time_iso_8601": "2024-02-22T20:25:37.398439Z",
            "url": "https://files.pythonhosted.org/packages/81/62/f50a039e592e42876778e5b8a93b7d88537a07881bdea336240b428ca84b/optimal1dclustering-1.0.1-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d1c586d40fd532e4beace08ac217cd57e8522fa44ea581881f337eb98320b32",
                "md5": "99214bea8948afda8f8909d18d110b6a",
                "sha256": "505ba2e156d986bb4cdc3a410c4ed0c4d2eced3065026ad8f37b8f2f2a7b5647"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99214bea8948afda8f8909d18d110b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 137086,
            "upload_time": "2024-02-22T20:25:38",
            "upload_time_iso_8601": "2024-02-22T20:25:38.863462Z",
            "url": "https://files.pythonhosted.org/packages/9d/1c/586d40fd532e4beace08ac217cd57e8522fa44ea581881f337eb98320b32/optimal1dclustering-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66ac083d0b7722c83e49c2bec73b69e5c287201d774870ff53d4c16af8fd21d8",
                "md5": "13e1d99411e6016ac5def83ba8822865",
                "sha256": "d868a04847cc606002a7c77803e71f64532aba1d97aecf53f85df134c4195fad"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13e1d99411e6016ac5def83ba8822865",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 19847,
            "upload_time": "2024-02-22T20:25:40",
            "upload_time_iso_8601": "2024-02-22T20:25:40.774165Z",
            "url": "https://files.pythonhosted.org/packages/66/ac/083d0b7722c83e49c2bec73b69e5c287201d774870ff53d4c16af8fd21d8/optimal1dclustering-1.0.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8abadc5345bebe38f54a86118d3ffe53c7f18efe9548427318196b83bc8c2ec0",
                "md5": "7a0851f4edca1d407dd17f912b6827ad",
                "sha256": "d670144c8eca6e14250caa5ce59608c49c26ad621b73e1d2fb1f717cca029e41"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a0851f4edca1d407dd17f912b6827ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 18058,
            "upload_time": "2024-02-22T20:25:41",
            "upload_time_iso_8601": "2024-02-22T20:25:41.756274Z",
            "url": "https://files.pythonhosted.org/packages/8a/ba/dc5345bebe38f54a86118d3ffe53c7f18efe9548427318196b83bc8c2ec0/optimal1dclustering-1.0.1-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1294c8c1fbf841d193166bae97eeb982127484389490bd5b24dd898b8e489e67",
                "md5": "d2f0bdf2871460c0edefb4d35ea74f16",
                "sha256": "c0e944780e6ac490737e7054cd5dd970a7a4bd2cc7393d50c67cf6c219a28c4a"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2f0bdf2871460c0edefb4d35ea74f16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 136058,
            "upload_time": "2024-02-22T20:25:43",
            "upload_time_iso_8601": "2024-02-22T20:25:43.297881Z",
            "url": "https://files.pythonhosted.org/packages/12/94/c8c1fbf841d193166bae97eeb982127484389490bd5b24dd898b8e489e67/optimal1dclustering-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "330dab1d24f43de1d2262c4de1e80d9ef8d927028e30f7ead3cb1375cd502557",
                "md5": "5b92f72d73d1085f143d387086301643",
                "sha256": "d612819388bba44ca449a9d557b8fc4ee0f917be572bfee433d716773dbe2550"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b92f72d73d1085f143d387086301643",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 19839,
            "upload_time": "2024-02-22T20:25:45",
            "upload_time_iso_8601": "2024-02-22T20:25:45.064953Z",
            "url": "https://files.pythonhosted.org/packages/33/0d/ab1d24f43de1d2262c4de1e80d9ef8d927028e30f7ead3cb1375cd502557/optimal1dclustering-1.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c3ebd6ef8e1347ae3bebd3a1a0263d7078afeeb86e41000b4c18a5f062da6e",
                "md5": "0c621b162de93b8e77eeaa376285ad58",
                "sha256": "2a022b278c187c7c3622ad9b8b35455f52c164fb4135471da9994d48fd5ed997"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c621b162de93b8e77eeaa376285ad58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 18039,
            "upload_time": "2024-02-22T20:25:46",
            "upload_time_iso_8601": "2024-02-22T20:25:46.107175Z",
            "url": "https://files.pythonhosted.org/packages/49/c3/ebd6ef8e1347ae3bebd3a1a0263d7078afeeb86e41000b4c18a5f062da6e/optimal1dclustering-1.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32738f68da1ac5af88055592bfccaacd502157a0bdc038b30c3a6c2d273cba53",
                "md5": "1e1a211938886dc7b7717651d4ad4133",
                "sha256": "da8a0f98b83d2d3cd0d508b7e58c706f26ba5cf1f9b7007ac50610de0118c65d"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e1a211938886dc7b7717651d4ad4133",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 135908,
            "upload_time": "2024-02-22T20:25:47",
            "upload_time_iso_8601": "2024-02-22T20:25:47.293262Z",
            "url": "https://files.pythonhosted.org/packages/32/73/8f68da1ac5af88055592bfccaacd502157a0bdc038b30c3a6c2d273cba53/optimal1dclustering-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "806c754ac5cea61b9e803a8f2261a0c4068705465b64e686b431113664ac7283",
                "md5": "ed40e7482c8c357fe3e3b91288a2c1cb",
                "sha256": "144f6c80bd7cb33eecd04726f20e957b97e75ecfac541910e626f1db44b73813"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ed40e7482c8c357fe3e3b91288a2c1cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 19842,
            "upload_time": "2024-02-22T20:25:49",
            "upload_time_iso_8601": "2024-02-22T20:25:49.032913Z",
            "url": "https://files.pythonhosted.org/packages/80/6c/754ac5cea61b9e803a8f2261a0c4068705465b64e686b431113664ac7283/optimal1dclustering-1.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "373bbfe31bfcd4e75ea6ede25fbffab5ef4459c5115fd9d8ff371f648bcaf0cf",
                "md5": "2b3a4733defb4d4245c50edda617d87b",
                "sha256": "ec669ec09ff9a4b8e59c9603a7ae5689bcb960ae948f897994c96d12e4654d8a"
            },
            "downloads": -1,
            "filename": "optimal1dclustering-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2b3a4733defb4d4245c50edda617d87b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 10396,
            "upload_time": "2024-02-22T20:25:49",
            "upload_time_iso_8601": "2024-02-22T20:25:49.985808Z",
            "url": "https://files.pythonhosted.org/packages/37/3b/bfe31bfcd4e75ea6ede25fbffab5ef4459c5115fd9d8ff371f648bcaf0cf/optimal1dclustering-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 20:25:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "optimal1dclustering"
}
        
Elapsed time: 0.19621s