batman-curve

A Python library for generating the iconic Batman curve.

https://github.com/avitase/batman-curve

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
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.8%) to scientific vocabulary

Keywords

batman nananananananana python
Last synced: 6 months ago · JSON representation ·

Repository

A Python library for generating the iconic Batman curve.

Basic Info
  • Host: GitHub
  • Owner: avitase
  • License: mit
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 70.3 KB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
batman nananananananana python
Created about 2 years ago · Last pushed about 2 years ago
Metadata Files
Readme License Citation

README.md

Batman Curve

Python 3.10 PyPI Test coverage Unit tests Code style: black

A Python library for generating the iconic Batman curve - a mathematical function that creates a plot resembling the legendary Batman symbol.

Learn More

Explore the mathematical details of the Batman curve on Wolfram MathWorld:

Weisstein, Eric W. "Batman Curve." From MathWorld - A Wolfram Web Resource. https://mathworld.wolfram.com/BatmanCurve.html

Installation

```bash

production installation

$ pip install -r requirements.txt $ pip install batman-curve

development installation

$ pip install -e .[dev] $ pre-commit install ```

Usage

```python import matplotlib.pyplot as plt import numpy as np

from batman_curve import batman

x = np.linspace(-7, 7, 300) upper, lower = batman(x)

fig, ax = plt.subplots() ax.plot(x, upper) ax.plot(x, lower) ```

Batman curve

Owner

  • Name: Nis Meinert
  • Login: avitase
  • Kind: user
  • Company: Pasteur Labs

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Meinert"
  given-names: "Nis"
  orcid: "https://orcid.org/0000-0002-4712-9579"
title: "batman-curve"
version: 1.0
date-released: 2024-01-10
url: "https://github.com/avitase/batman-curve"

GitHub Events

Total
Last Year

Issues and Pull Requests

Last synced: 7 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

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 3 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 1
  • Total maintainers: 1
pypi.org: batman-curve

A Python library for generating the iconic Batman curve.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3 Last month
Rankings
Dependent packages count: 10.0%
Average: 38.2%
Dependent repos count: 66.3%
Maintainers (1)
Last synced: 7 months ago

Dependencies

.github/workflows/get_coverage.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • codecov/codecov-action v3 composite
.github/workflows/pre_commit.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • pre-commit/action v3.0.0 composite
.github/workflows/run_tests.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
pyproject.toml pypi
requirements.txt pypi
  • numpy *
setup.py pypi
  • numpy *