Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.8%) to scientific vocabulary

Keywords

arrays ismember lookup matching
Last synced: 7 months ago · JSON representation ·

Repository

ismember

Basic Info
Statistics
  • Stars: 8
  • Watchers: 3
  • Forks: 4
  • Open Issues: 1
  • Releases: 11
Topics
arrays ismember lookup matching
Created about 6 years ago · Last pushed 10 months ago
Metadata Files
Readme Funding License Citation

README.md

ismember

Python PyPI Version GitHub Repo stars License Downloads Downloads Sphinx <!---BuyMeCoffee--> <!---Coffee-->

ismember is a Python library that checks whether the elements in X is present in Y.

⭐️ Star this repo if you like it ⭐️

Documentation pages

On the documentation pages you can find more information about ismember with examples.

Install ismember from PyPI

bash pip install ismember # normal install pip install -U ismember # update if needed

Import ismember package

python from ismember import ismember


Quick example

Use the documentation pages for more detailed usage. Some of the most used functionalities are linked below.

```python

from ismember import ismember

Example with lists

I, idx = ismember([1,2,3,None], [4,1,2]) I, idx = ismember(["1","2","3"], ["4","1","2"]) ```

Example: Check whether the elements of X are present in Y

Example: Determine the corresponding location of the values that are present in Y array

Example: Row wise comparison

Example: Elementwise comparison


☕ Support

If you find this project useful, consider supporting me:

Owner

  • Name: Erdogan
  • Login: erdogant
  • Kind: user
  • Location: Den Haag

Machine Learning | Statistics | Bayesian | D3js | Visualizations

Citation (CITATION.cff)

# YAML 1.2
---
authors: 
  -
    family-names: Taskesen
    given-names: Erdogan
    orcid: "https://orcid.org/0000-0002-3430-9618"
cff-version: "1.1.0"
date-released: 2020-01-19
keywords: 
  - "python"
  - "ismember"
  - "matching"
license: "MIT"
message: "If you use this software, please cite it using these metadata."
repository-code: "https://erdogant.github.io/ismember"
title: "Match array elements between two sets of arrays with the ismember Python library."
version: "1.0.0"
...

GitHub Events

Total
  • Release event: 1
  • Issue comment event: 1
  • Push event: 7
  • Fork event: 2
  • Create event: 1
Last Year
  • Release event: 1
  • Issue comment event: 1
  • Push event: 7
  • Fork event: 2
  • Create event: 1

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 79
  • Total Committers: 4
  • Avg Commits per committer: 19.75
  • Development Distribution Score (DDS): 0.43
Past Year
  • Commits: 16
  • Committers: 3
  • Avg Commits per committer: 5.333
  • Development Distribution Score (DDS): 0.375
Top Committers
Name Email Commits
erdogant e****t@g****m 45
Erdogan Taskesen 3****t 23
rleu r****5@g****m 10
rw31415 6****5 1

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 2
  • Total pull requests: 3
  • Average time to close issues: 4 days
  • Average time to close pull requests: 2 days
  • Total issue authors: 2
  • Total pull request authors: 2
  • Average comments per issue: 3.5
  • Average comments per pull request: 1.33
  • Merged pull requests: 3
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • alexxxnf (1)
  • leuraph (1)
Pull Request Authors
  • leuraph (4)
  • rw31415 (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 11,640 last-month
  • Total docker downloads: 77
  • Total dependent packages: 11
  • Total dependent repositories: 11
  • Total versions: 13
  • Total maintainers: 1
pypi.org: ismember

Python package ismember returns array elements that are members of set array.

  • Homepage: https://erdogant.github.io/ismember
  • Documentation: https://ismember.readthedocs.io/
  • License: MIT License Copyright (c) 2020 Erdogan Taskesen ismember - Python package Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  • Latest release: 1.1.0
    published 10 months ago
  • Versions: 13
  • Dependent Packages: 11
  • Dependent Repositories: 11
  • Downloads: 11,640 Last month
  • Docker Downloads: 77
Rankings
Dependent packages count: 1.1%
Downloads: 2.8%
Docker downloads count: 4.0%
Dependent repos count: 4.4%
Average: 9.1%
Stargazers count: 19.4%
Forks count: 22.6%
Maintainers (1)
Last synced: 7 months ago

Dependencies

docs/source/requirements.txt pypi
  • pipinstallsphinx_rtd_theme *
requirements-dev.txt pypi
  • pytest * development
  • rst2pdf * development
  • sphinx * development
  • sphinx_rtd_theme * development
  • spyder-kernels * development
requirements.txt pypi
  • numpy *
setup.py pypi
  • numpy *
.github/workflows/codeql-analysis.yml actions
  • actions/checkout v2 composite
  • github/codeql-action/analyze v1 composite
  • github/codeql-action/autobuild v1 composite
  • github/codeql-action/init v1 composite
.github/workflows/pytest.yml actions
  • actions/checkout v2 composite
  • conda-incubator/setup-miniconda v2 composite