Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 2 committers (50.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (2.6%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Basic Info
- Host: GitHub
- Owner: smautner
- Language: Python
- Default Branch: master
- Size: 13.7 KB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 6 years ago
· Last pushed almost 2 years ago
Metadata Files
Readme
README.md
listmapzip
provides a few functions that should be part of python3
Install
pip install lmz
conda install -c conda-forge
Example
```Python from lmz import Map,Zip,Filter,Grouper,Range,Transpose,Flatten,iterselect
Map
def add(x,y=4): return x+y Map(add, range(3),y=2) [2, 3, 4]
Grouper(range(10),3) [(0, 1, 2), (3, 4, 5), (6, 7, 8), (9, None, None)]
Flatten
z=Grouper(range(10),3) Flatten(z) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, None, None]
Transpose(z) [(0, 3, 6, 9), (1, 4, 7, None), (2, 5, 8, None)]
Range(z) [0, 1, 2, 3]
iterselect(iter(range(10)),4) 4
Zip and Filter work as expected
```
Owner
- Login: smautner
- Kind: user
- Repositories: 13
- Profile: https://github.com/smautner
GitHub Events
Total
Last Year
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| S Mautner | m****r@c****e | 15 |
| smautner | s****r | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total 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
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
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
setup.py
pypi