{"id":34024136,"url":"https://github.com/y-sunflower/bumplot","last_synced_at":"2026-04-01T19:19:06.750Z","repository":{"id":313287479,"uuid":"1043585076","full_name":"y-sunflower/bumplot","owner":"y-sunflower","description":"Easily create and customize bump charts in Python","archived":false,"fork":false,"pushed_at":"2026-01-28T08:58:48.000Z","size":891,"stargazers_count":73,"open_issues_count":6,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T00:58:00.121Z","etag":null,"topics":["bump","dataviz","matplotlib","plot"],"latest_commit_sha":null,"homepage":"https://y-sunflower.github.io/bumplot/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/y-sunflower.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-24T07:12:17.000Z","updated_at":"2026-02-07T08:00:55.000Z","dependencies_parsed_at":"2025-09-05T03:52:45.749Z","dependency_job_id":"c074e98f-5386-4359-9fd9-3373e2ce830c","html_url":"https://github.com/y-sunflower/bumplot","commit_stats":null,"previous_names":["y-sunflower/bumplot"],"tags_count":4,"template":false,"template_full_name":"y-sunflower/python-package-template","purl":"pkg:github/y-sunflower/bumplot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-sunflower%2Fbumplot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-sunflower%2Fbumplot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-sunflower%2Fbumplot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-sunflower%2Fbumplot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/y-sunflower","download_url":"https://codeload.github.com/y-sunflower/bumplot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-sunflower%2Fbumplot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291118,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bump","dataviz","matplotlib","plot"],"created_at":"2025-12-13T16:05:27.177Z","updated_at":"2026-04-01T19:19:06.743Z","avatar_url":"https://github.com/y-sunflower.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `bumplot`: easily create and customize bump charts in Python\n\n\u003c!-- Automatically generated, uses README.qmd to modify README.md --\u003e\n\n\u003cimg src=\"https://github.com/JosephBARBIERDARNAL/static/blob/main/python-libs/bumplot/image.png?raw=true\" alt=\"bumplot logo\" align=\"right\" width=\"180px\"/\u003e\n\n`bumplot` is a small Python package made to facilitate the creation of\n**bump charts** using matplotlib and Bézier curves. It has high\ncustomization capabilities too!\n\nBump charts are useful when the focus is on comparing **relative\nrankings**—who is ahead of whom—rather than the exact magnitude of the\ndifferences.\n\nCheck out the [online\ndocumentation](https://y-sunflower.github.io/bumplot/)\n\n\u003cbr\u003e \u003cbr\u003e\n\n## Get started\n\n```python\nimport matplotlib.pyplot as plt\nimport pandas as pd\n\nfrom bumplot import bumplot\n\ndata = pd.DataFrame(\n    {\n        \"x\": [2020, 2021, 2022, 2023],\n        \"A\": [10, 50, 20, 80],\n        \"B\": [40, 30, 60, 10],\n        \"C\": [90, 20, 70, 40],\n    }\n)\n\nfig, ax = plt.subplots(figsize=(8, 4))\nbumplot(\n    x=\"x\",\n    y_columns=[\"A\", \"B\", \"C\"],\n    data=data,\n    curve_force=0.5,\n    plot_kwargs={\"lw\": 4},\n    scatter_kwargs={\"s\": 150, \"ec\": \"black\", \"lw\": 2},\n    colors=[\"#ffbe0b\", \"#ff006e\", \"#3a86ff\"],\n)\nax.legend()\nax.spines[[\"top\", \"right\", \"left\", \"bottom\"]].set_visible(False)\nax.grid(alpha=0.4)\n```\n\n![](README_files/figure-commonmark/cell-3-output-1.png)\n\n[See more examples](https://y-sunflower.github.io/bumplot/examples/)\n\n\u003cbr\u003e \u003cbr\u003e\n\n## Installation\n\n    pip install bumplot\n\n\u003cbr\u003e\u003cbr\u003e\n\n## Features\n\n- Automatic ranking of your data (with support for both `pandas` and\n  `polars`)\n- Accept categorical data for x-axis\n- Infinite customization capabilities\n- Easy control of the curvature intensity\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-sunflower%2Fbumplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fy-sunflower%2Fbumplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-sunflower%2Fbumplot/lists"}