# PaCMAP
## Table of Contents
<!-- vscode-markdown-toc -->
- [PaCMAP](#pacmap)
- [Table of Contents](#table-of-contents)
- [Introduction](#introduction)
- [Release Notes](#release-notes)
- [Installation](#installation)
- [Install from conda-forge via conda or mamba](#install-from-conda-forge-via-conda-or-mamba)
- [Install from PyPI via pip](#install-from-pypi-via-pip)
- [Usage](#usage)
- [Using PaCMAP in Python](#using-pacmap-in-python)
- [Using PaCMAP in R](#using-pacmap-in-r)
- [Using PaCMAP in Rust](#using-pacmap-in-rust)
- [Benchmarks](#benchmarks)
- [Parameters](#parameters)
- [Methods](#methods)
- [How to use user-specified nearest neighbor](#how-to-use-user-specified-nearest-neighbor)
- [Reproducing our experiments](#reproducing-our-experiments)
- [Citation](#citation)
- [License](#license)
<!-- vscode-markdown-toc-config
numbering=false
autoSave=true
/vscode-markdown-toc-config -->
<!-- /vscode-markdown-toc -->
## <a name='Introduction'></a>Introduction
**Our work has been published at the Journal of Machine Learning Research(JMLR)!**
PaCMAP (Pairwise Controlled Manifold Approximation) is a dimensionality reduction method that can be used for visualization, preserving both local and global structure of the data in original space. PaCMAP optimizes the low dimensional embedding using three kinds of pairs of points: neighbor pairs (pair_neighbors), mid-near pair (pair_MN), and further pairs (pair_FP).
Previous dimensionality reduction techniques focus on either local structure (e.g. t-SNE, LargeVis and UMAP) or global structure (e.g. TriMAP), but not both, although with carefully tuning the parameter in their algorithms that controls the balance between global and local structure, which mainly adjusts the number of considered neighbors. Instead of considering more neighbors to attract for preserving glocal structure, PaCMAP dynamically uses a special group of pairs -- mid-near pairs, to first capture global structure and then refine local structure, which both preserve global and local structure. For a thorough background and discussion on this work, please read [our paper](https://jmlr.org/papers/v22/20-1061.html).
## <a name='ReleaseNotes'></a>Release Notes
Please see the [release notes](release_notes.md).
## <a name='Installation'></a>Installation
### <a name='Installfromconda-forgeviacondaormamba'></a>Install from conda-forge via conda or mamba
You can use [conda](https://docs.conda.io/en/latest/) or [mamba](https://mamba.readthedocs.io/en/latest/index.html)
to install PaCMAP from the conda-forge channel.
conda:
```bash
conda install pacmap -c conda-forge
```
mamba:
```bash
mamba install pacmap -c conda-forge
```
### <a name='InstallfromPyPIviapip'></a>Install from PyPI via pip
You can use [pip](https://pip.pypa.io/en/stable/) to install pacmap from PyPI.
It will automatically install the dependencies for you:
```bash
pip install pacmap
```
If you have any problems during the installation of dependencies, such as
`Failed building wheel for annoy`, you can try to install these dependencies
with `conda` or `mamba`. Users have also reported that in some cases, you may
wish to use `numba >= 0.57`.
```bash
conda install -c conda-forge python-annoy
pip install pacmap
```
## <a name='Usage'></a>Usage
### <a name='UsingPaCMAPinPython'></a>Using PaCMAP in Python
The `pacmap` package is designed to be compatible with `scikit-learn`, meaning that it has a similar interface with functions in the `sklearn.manifold` module. To run `pacmap` on your own dataset, you should install the package following the instructions in [installation](#installation), and then import the module. The following code clip includes a use case about how to use PaCMAP on the [COIL-20](https://www.cs.columbia.edu/CAVE/software/softlib/coil-20.php) dataset:
```python
import pacmap
import numpy as np
import matplotlib.pyplot as plt
# loading preprocessed coil_20 dataset
# you can change it with any dataset that is in the ndarray format, with the shape (N, D)
# where N is the number of samples and D is the dimension of each sample
X = np.load("./data/coil_20.npy", allow_pickle=True)
X = X.reshape(X.shape[0], -1)
y = np.load("./data/coil_20_labels.npy", allow_pickle=True)
# initializing the pacmap instance
# Setting n_neighbors to "None" leads to an automatic choice shown below in "parameter" section
embedding = pacmap.PaCMAP(n_components=2, n_neighbors=10, MN_ratio=0.5, FP_ratio=2.0)
# fit the data (The index of transformed data corresponds to the index of the original data)
X_transformed = embedding.fit_transform(X, init="pca")
# visualize the embedding
fig, ax = plt.subplots(1, 1, figsize=(6, 6))
ax.scatter(X_transformed[:, 0], X_transformed[:, 1], cmap="Spectral", c=y, s=0.6)
```
### <a name='UsingPaCMAPinR'></a>Using PaCMAP in R
You can also use PaCMAP in R with the [reticulate package](https://rstudio.github.io/reticulate/).
We provide a sample [R notebook](./demo/pacmap_Rnotebook_example.Rmd) that demonstrates
how PaCMAP can be called in R for visualization. We also provide a [Seurat Intergation](https://github.com/williamsyy/gdc-frontend-framework) that allows seamless integration with
[Seurat](https://github.com/satijalab/seurat) Objects for single cell genomics.
### <a name='UsingPaCMAPinRust'></a>Using PaCMAP in Rust
A [Rust implementation](https://github.com/beamform/pacmap-rs.git) of PaCMAP has
recently be released by @hadronzoo. This implementation is Python free, meaning that
it does not depend on a Python runtime or Python environment.
## <a name='Benchmarks'></a>Benchmarks
The following images are visualizations of two datasets: [MNIST](http://yann.lecun.com/exdb/mnist/) (n=70,000, d=784) and [Mammoth](https://github.com/PAIR-code/understanding-umap/tree/master/raw_data) (n=10,000, d=3), generated by PaCMAP. The two visualizations demonstrate the local and global structure's preservation ability of PaCMAP respectively.


## <a name='Parameters'></a>Parameters
The list of the most important parameters is given below. Changing these values will affect the result of dimension reduction significantly, as specified in section 8.3 in our paper.
- `n_components`: the number of dimension of the output. Default to 2.
- `n_neighbors`: the number of neighbors considered in the k-Nearest Neighbor graph. Default to 10. We also allow this parameter to be set to `None` to enable the auto-selection of number of neighbors: the number of neighbors will be set to 10 for dataset whose sample size is smaller than 10000. For large dataset whose sample size (n) is larger than 10000, the value is: 10 + 15 * (log10(n) - 4).
- `MN_ratio`: the ratio of the number of mid-near pairs to the number of neighbors, `n_MN` = <img src="https://latex.codecogs.com/gif.latex?\lfloor" title="\lfloor" /> `n_neighbors * MN_ratio` <img src="https://latex.codecogs.com/gif.latex?\rfloor" title="\rfloor" /> . Default to 0.5.
- `FP_ratio`: the ratio of the number of further pairs to the number of neighbors, `n_FP` = <img src="https://latex.codecogs.com/gif.latex?\lfloor" title="\lfloor" /> `n_neighbors * FP_ratio` <img src="https://latex.codecogs.com/gif.latex?\rfloor" title="\rfloor" /> Default to 2.
The initialization is also important to the result, but it's a parameter of the `fit` and `fit_transform` function.
- `init`: the initialization of the lower dimensional embedding. One of `"pca"` or `"random"`, or a user-provided numpy ndarray with the shape (N, 2). Default to `"random"`.
Other parameters include:
- `num_iters`: number of iterations. Default to 450. 450 iterations is enough for most dataset to converge.
- `pair_neighbors`, `pair_MN` and `pair_FP`: pre-specified neighbor pairs, mid-near points, and further pairs. Allows user to use their own graphs. Default to `None`.
- `verbose`: print the progress of pacmap. Default to `False`
- `lr`: learning rate of the AdaGrad optimizer. Default to 1.
- `apply_pca`: whether pacmap should apply PCA to the data before constructing the k-Nearest Neighbor graph. Using PCA to preprocess the data can largely accelerate the DR process without losing too much accuracy. Notice that this option does not affect the initialization of the optimization process.
- `intermediate`: whether pacmap should also output the intermediate stages of the optimization process of the lower dimension embedding. If `True`, then the output will be a numpy array of the size (n, `n_components`, 13), where each slice is a "screenshot" of the output embedding at a particular number of steps, from [0, 10, 30, 60, 100, 120, 140, 170, 200, 250, 300, 350, 450].
## <a name='Methods'></a>Methods
Similar to the scikit-learn API, the PaCMAP instance can generate embedding for a dataset via `fit`, `fit_transform` and `transform` method. We currently support numpy.ndarray format as our input. Specifically, to convert pandas DataFrame to ndarray format, please refer to the [pandas documentation](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_numpy.html). For a more detailed walkthrough, please see the [demo](./demo/) directory.
## <a name='Howtouseuser-specifiednearestneighbor'></a>How to use user-specified nearest neighbor
In version 0.4, we have provided a new option to allow users to use their own nearest neighbors when mapping large-scale datasets. Please see the [demo](./demo/specify_nn_demo.py) for a detailed walkthrough about how to use PaCMAP with the user-specified nearest neighbors.
## <a name='Reproducingourexperiments'></a>Reproducing our experiments
We have provided the code we use to run experiment for better reproducibility. The code are separated into three parts, in three folders, respectively:
- `data`, which includes all the datasets we used, preprocessed into the file format each DR method use. Notice that since the Mouse single cell RNA sequence dataset is too big (~4GB), you may need to download from the [link](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE93374) here. MNIST and FMNIST dataset is compressed, and you need to unzip them before using. COIL-100 dataset is still too large after compressed, please preprocess it using the file Preprocessing.ipynb on your own.
- `experiments`, which includes all the scripts we use to produce DR results.
- `evaluation`, which includes all the scripts we use to evaluate DR results, stated in Section 8 in our paper.
After downloading the code, you may need to specify some of the paths in the script to make them fully functional.
## <a name='Citation'></a>Citation
If you used PaCMAP in your publication, or you used the implementation in this repository, please cite our paper using the following bibtex:
```bibtex
@article{JMLR:v22:20-1061,
author = {Yingfan Wang and Haiyang Huang and Cynthia Rudin and Yaron Shaposhnik},
title = {Understanding How Dimension Reduction Tools Work: An Empirical Approach to Deciphering t-SNE, UMAP, TriMap, and PaCMAP for Data Visualization},
journal = {Journal of Machine Learning Research},
year = {2021},
volume = {22},
number = {201},
pages = {1-73},
url = {http://jmlr.org/papers/v22/20-1061.html}
}
```
For PaCMAP's performance on biological dataset, please check the following paper:
```bibtex
@article{huang2022towards,
title={Towards a comprehensive evaluation of dimension reduction methods for transcriptomic data visualization},
author={Huang, Haiyang and Wang, Yingfan and Rudin, Cynthia and Browne, Edward P},
journal={Communications biology},
volume={5},
number={1},
pages={719},
year={2022},
publisher={Nature Publishing Group UK London}
}
```
## <a name='License'></a>License
Please see the license file.
Raw data
{
"_id": null,
"home_page": "https://github.com/YingfanWang/PaCMAP",
"name": "pacmap",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "Yingfan Wang, Haiyang Huang, Cynthia Rudin, Yaron Shaposhnik",
"author_email": "yingfan.wang@duke.edu",
"download_url": "https://files.pythonhosted.org/packages/06/30/1bec3563695cec01d4727aab4524dac3e94147e9b33387f4dfa558047ddf/pacmap-0.7.6.tar.gz",
"platform": null,
"description": "# PaCMAP\n\n## Table of Contents\n<!-- vscode-markdown-toc -->\n- [PaCMAP](#pacmap)\n - [Table of Contents](#table-of-contents)\n - [Introduction](#introduction)\n - [Release Notes](#release-notes)\n - [Installation](#installation)\n - [Install from conda-forge via conda or mamba](#install-from-conda-forge-via-conda-or-mamba)\n - [Install from PyPI via pip](#install-from-pypi-via-pip)\n - [Usage](#usage)\n - [Using PaCMAP in Python](#using-pacmap-in-python)\n - [Using PaCMAP in R](#using-pacmap-in-r)\n - [Using PaCMAP in Rust](#using-pacmap-in-rust)\n - [Benchmarks](#benchmarks)\n - [Parameters](#parameters)\n - [Methods](#methods)\n - [How to use user-specified nearest neighbor](#how-to-use-user-specified-nearest-neighbor)\n - [Reproducing our experiments](#reproducing-our-experiments)\n - [Citation](#citation)\n - [License](#license)\n\n<!-- vscode-markdown-toc-config\n\tnumbering=false\n\tautoSave=true\n\t/vscode-markdown-toc-config -->\n<!-- /vscode-markdown-toc -->\n\n## <a name='Introduction'></a>Introduction\n\n**Our work has been published at the Journal of Machine Learning Research(JMLR)!**\n\nPaCMAP (Pairwise Controlled Manifold Approximation) is a dimensionality reduction method that can be used for visualization, preserving both local and global structure of the data in original space. PaCMAP optimizes the low dimensional embedding using three kinds of pairs of points: neighbor pairs (pair_neighbors), mid-near pair (pair_MN), and further pairs (pair_FP).\n\nPrevious dimensionality reduction techniques focus on either local structure (e.g. t-SNE, LargeVis and UMAP) or global structure (e.g. TriMAP), but not both, although with carefully tuning the parameter in their algorithms that controls the balance between global and local structure, which mainly adjusts the number of considered neighbors. Instead of considering more neighbors to attract for preserving glocal structure, PaCMAP dynamically uses a special group of pairs -- mid-near pairs, to first capture global structure and then refine local structure, which both preserve global and local structure. For a thorough background and discussion on this work, please read [our paper](https://jmlr.org/papers/v22/20-1061.html).\n\n## <a name='ReleaseNotes'></a>Release Notes\n\nPlease see the [release notes](release_notes.md).\n\n## <a name='Installation'></a>Installation\n\n### <a name='Installfromconda-forgeviacondaormamba'></a>Install from conda-forge via conda or mamba\n\nYou can use [conda](https://docs.conda.io/en/latest/) or [mamba](https://mamba.readthedocs.io/en/latest/index.html)\nto install PaCMAP from the conda-forge channel.\n\nconda:\n\n```bash\nconda install pacmap -c conda-forge\n```\n\nmamba:\n\n```bash\nmamba install pacmap -c conda-forge\n```\n\n### <a name='InstallfromPyPIviapip'></a>Install from PyPI via pip\n\nYou can use [pip](https://pip.pypa.io/en/stable/) to install pacmap from PyPI.\nIt will automatically install the dependencies for you:\n\n```bash\npip install pacmap\n```\n\nIf you have any problems during the installation of dependencies, such as\n`Failed building wheel for annoy`, you can try to install these dependencies\nwith `conda` or `mamba`. Users have also reported that in some cases, you may\nwish to use `numba >= 0.57`.\n\n```bash\nconda install -c conda-forge python-annoy\npip install pacmap\n```\n\n## <a name='Usage'></a>Usage\n\n### <a name='UsingPaCMAPinPython'></a>Using PaCMAP in Python\n\nThe `pacmap` package is designed to be compatible with `scikit-learn`, meaning that it has a similar interface with functions in the `sklearn.manifold` module. To run `pacmap` on your own dataset, you should install the package following the instructions in [installation](#installation), and then import the module. The following code clip includes a use case about how to use PaCMAP on the [COIL-20](https://www.cs.columbia.edu/CAVE/software/softlib/coil-20.php) dataset:\n\n```python\nimport pacmap\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n# loading preprocessed coil_20 dataset\n# you can change it with any dataset that is in the ndarray format, with the shape (N, D)\n# where N is the number of samples and D is the dimension of each sample\nX = np.load(\"./data/coil_20.npy\", allow_pickle=True)\nX = X.reshape(X.shape[0], -1)\ny = np.load(\"./data/coil_20_labels.npy\", allow_pickle=True)\n\n# initializing the pacmap instance\n# Setting n_neighbors to \"None\" leads to an automatic choice shown below in \"parameter\" section\nembedding = pacmap.PaCMAP(n_components=2, n_neighbors=10, MN_ratio=0.5, FP_ratio=2.0) \n\n# fit the data (The index of transformed data corresponds to the index of the original data)\nX_transformed = embedding.fit_transform(X, init=\"pca\")\n\n# visualize the embedding\nfig, ax = plt.subplots(1, 1, figsize=(6, 6))\nax.scatter(X_transformed[:, 0], X_transformed[:, 1], cmap=\"Spectral\", c=y, s=0.6)\n```\n\n### <a name='UsingPaCMAPinR'></a>Using PaCMAP in R\n\nYou can also use PaCMAP in R with the [reticulate package](https://rstudio.github.io/reticulate/).\nWe provide a sample [R notebook](./demo/pacmap_Rnotebook_example.Rmd) that demonstrates\nhow PaCMAP can be called in R for visualization. We also provide a [Seurat Intergation](https://github.com/williamsyy/gdc-frontend-framework) that allows seamless integration with\n[Seurat](https://github.com/satijalab/seurat) Objects for single cell genomics.\n\n### <a name='UsingPaCMAPinRust'></a>Using PaCMAP in Rust\n\nA [Rust implementation](https://github.com/beamform/pacmap-rs.git) of PaCMAP has\nrecently be released by @hadronzoo. This implementation is Python free, meaning that\nit does not depend on a Python runtime or Python environment.\n\n## <a name='Benchmarks'></a>Benchmarks\n\nThe following images are visualizations of two datasets: [MNIST](http://yann.lecun.com/exdb/mnist/) (n=70,000, d=784) and [Mammoth](https://github.com/PAIR-code/understanding-umap/tree/master/raw_data) (n=10,000, d=3), generated by PaCMAP. The two visualizations demonstrate the local and global structure's preservation ability of PaCMAP respectively.\n\n\n\n\n\n## <a name='Parameters'></a>Parameters\n\nThe list of the most important parameters is given below. Changing these values will affect the result of dimension reduction significantly, as specified in section 8.3 in our paper.\n\n- `n_components`: the number of dimension of the output. Default to 2.\n\n- `n_neighbors`: the number of neighbors considered in the k-Nearest Neighbor graph. Default to 10. We also allow this parameter to be set to `None` to enable the auto-selection of number of neighbors: the number of neighbors will be set to 10 for dataset whose sample size is smaller than 10000. For large dataset whose sample size (n) is larger than 10000, the value is: 10 + 15 * (log10(n) - 4).\n\n- `MN_ratio`: the ratio of the number of mid-near pairs to the number of neighbors, `n_MN` = <img src=\"https://latex.codecogs.com/gif.latex?\\lfloor\" title=\"\\lfloor\" /> `n_neighbors * MN_ratio` <img src=\"https://latex.codecogs.com/gif.latex?\\rfloor\" title=\"\\rfloor\" /> . Default to 0.5.\n\n- `FP_ratio`: the ratio of the number of further pairs to the number of neighbors, `n_FP` = <img src=\"https://latex.codecogs.com/gif.latex?\\lfloor\" title=\"\\lfloor\" /> `n_neighbors * FP_ratio` <img src=\"https://latex.codecogs.com/gif.latex?\\rfloor\" title=\"\\rfloor\" /> Default to 2.\n\nThe initialization is also important to the result, but it's a parameter of the `fit` and `fit_transform` function.\n\n- `init`: the initialization of the lower dimensional embedding. One of `\"pca\"` or `\"random\"`, or a user-provided numpy ndarray with the shape (N, 2). Default to `\"random\"`.\n\nOther parameters include:\n\n- `num_iters`: number of iterations. Default to 450. 450 iterations is enough for most dataset to converge.\n- `pair_neighbors`, `pair_MN` and `pair_FP`: pre-specified neighbor pairs, mid-near points, and further pairs. Allows user to use their own graphs. Default to `None`.\n- `verbose`: print the progress of pacmap. Default to `False`\n- `lr`: learning rate of the AdaGrad optimizer. Default to 1.\n- `apply_pca`: whether pacmap should apply PCA to the data before constructing the k-Nearest Neighbor graph. Using PCA to preprocess the data can largely accelerate the DR process without losing too much accuracy. Notice that this option does not affect the initialization of the optimization process.\n- `intermediate`: whether pacmap should also output the intermediate stages of the optimization process of the lower dimension embedding. If `True`, then the output will be a numpy array of the size (n, `n_components`, 13), where each slice is a \"screenshot\" of the output embedding at a particular number of steps, from [0, 10, 30, 60, 100, 120, 140, 170, 200, 250, 300, 350, 450].\n\n## <a name='Methods'></a>Methods\n\nSimilar to the scikit-learn API, the PaCMAP instance can generate embedding for a dataset via `fit`, `fit_transform` and `transform` method. We currently support numpy.ndarray format as our input. Specifically, to convert pandas DataFrame to ndarray format, please refer to the [pandas documentation](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_numpy.html). For a more detailed walkthrough, please see the [demo](./demo/) directory.\n\n## <a name='Howtouseuser-specifiednearestneighbor'></a>How to use user-specified nearest neighbor\n\nIn version 0.4, we have provided a new option to allow users to use their own nearest neighbors when mapping large-scale datasets. Please see the [demo](./demo/specify_nn_demo.py) for a detailed walkthrough about how to use PaCMAP with the user-specified nearest neighbors.\n\n## <a name='Reproducingourexperiments'></a>Reproducing our experiments\n\nWe have provided the code we use to run experiment for better reproducibility. The code are separated into three parts, in three folders, respectively:\n\n- `data`, which includes all the datasets we used, preprocessed into the file format each DR method use. Notice that since the Mouse single cell RNA sequence dataset is too big (~4GB), you may need to download from the [link](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE93374) here. MNIST and FMNIST dataset is compressed, and you need to unzip them before using. COIL-100 dataset is still too large after compressed, please preprocess it using the file Preprocessing.ipynb on your own.\n- `experiments`, which includes all the scripts we use to produce DR results.\n- `evaluation`, which includes all the scripts we use to evaluate DR results, stated in Section 8 in our paper.\n\nAfter downloading the code, you may need to specify some of the paths in the script to make them fully functional.\n\n## <a name='Citation'></a>Citation\n\nIf you used PaCMAP in your publication, or you used the implementation in this repository, please cite our paper using the following bibtex:\n\n```bibtex\n@article{JMLR:v22:20-1061,\n author = {Yingfan Wang and Haiyang Huang and Cynthia Rudin and Yaron Shaposhnik},\n title = {Understanding How Dimension Reduction Tools Work: An Empirical Approach to Deciphering t-SNE, UMAP, TriMap, and PaCMAP for Data Visualization},\n journal = {Journal of Machine Learning Research},\n year = {2021},\n volume = {22},\n number = {201},\n pages = {1-73},\n url = {http://jmlr.org/papers/v22/20-1061.html}\n}\n```\n\nFor PaCMAP's performance on biological dataset, please check the following paper:\n\n```bibtex\n@article{huang2022towards,\n title={Towards a comprehensive evaluation of dimension reduction methods for transcriptomic data visualization},\n author={Huang, Haiyang and Wang, Yingfan and Rudin, Cynthia and Browne, Edward P},\n journal={Communications biology},\n volume={5},\n number={1},\n pages={719},\n year={2022},\n publisher={Nature Publishing Group UK London}\n}\n```\n\n## <a name='License'></a>License\n\nPlease see the license file.\n",
"bugtrack_url": null,
"license": null,
"summary": "The official implementation for PaCMAP: Pairwise Controlled Manifold Approximation Projection",
"version": "0.7.6",
"project_urls": {
"Bug Tracker": "https://github.com/YingfanWang/PaCMAP/issues",
"Homepage": "https://github.com/YingfanWang/PaCMAP"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0a53281ff390687266f78561cb0eab57e94bdfaa2d50b5e10f04d0b50e39cdee",
"md5": "573ed5609fde090f2d71f3a58c3cf9ae",
"sha256": "f0c2b53443bc7f3b0e67578c192ce17956351dd7ca709eb27f54c93155ae096a"
},
"downloads": -1,
"filename": "pacmap-0.7.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "573ed5609fde090f2d71f3a58c3cf9ae",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 19126,
"upload_time": "2024-11-17T00:22:51",
"upload_time_iso_8601": "2024-11-17T00:22:51.955586Z",
"url": "https://files.pythonhosted.org/packages/0a/53/281ff390687266f78561cb0eab57e94bdfaa2d50b5e10f04d0b50e39cdee/pacmap-0.7.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06301bec3563695cec01d4727aab4524dac3e94147e9b33387f4dfa558047ddf",
"md5": "2216ee17cac6c93a6ad3c84525cea02e",
"sha256": "fb726be829b47d90332b0357f205fee0a62cd0aec20bfad11d16ff1b407de0b5"
},
"downloads": -1,
"filename": "pacmap-0.7.6.tar.gz",
"has_sig": false,
"md5_digest": "2216ee17cac6c93a6ad3c84525cea02e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 26027,
"upload_time": "2024-11-17T00:22:53",
"upload_time_iso_8601": "2024-11-17T00:22:53.554306Z",
"url": "https://files.pythonhosted.org/packages/06/30/1bec3563695cec01d4727aab4524dac3e94147e9b33387f4dfa558047ddf/pacmap-0.7.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-17 00:22:53",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "YingfanWang",
"github_project": "PaCMAP",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "pacmap"
}