{"id":50009730,"url":"https://github.com/scicloj/plotje","last_synced_at":"2026-05-19T21:35:23.976Z","repository":{"id":348589612,"uuid":"1198838849","full_name":"scicloj/plotje","owner":"scicloj","description":"simple and easy plotting","archived":false,"fork":false,"pushed_at":"2026-05-19T13:14:26.000Z","size":46132,"stargazers_count":7,"open_issues_count":3,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-19T16:05:38.538Z","etag":null,"topics":["clojure","datavis","grammar-of-graphics","plotting"],"latest_commit_sha":null,"homepage":"https://scicloj.github.io/plotje/","language":"Clojure","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/scicloj.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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":"2026-04-01T20:06:54.000Z","updated_at":"2026-05-19T13:15:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/scicloj/plotje","commit_stats":null,"previous_names":["scicloj/napkinsketch","scicloj/plotje"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/scicloj/plotje","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scicloj%2Fplotje","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scicloj%2Fplotje/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scicloj%2Fplotje/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scicloj%2Fplotje/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scicloj","download_url":"https://codeload.github.com/scicloj/plotje/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scicloj%2Fplotje/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33225264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T15:49:41.270Z","status":"ssl_error","status_checked_at":"2026-05-19T15:49:22.917Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["clojure","datavis","grammar-of-graphics","plotting"],"created_at":"2026-05-19T21:35:23.149Z","updated_at":"2026-05-19T21:35:23.969Z","avatar_url":"https://github.com/scicloj.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Plotje\nComposable plotting in Clojure\n\n![](readme_files/image0.svg)\n\n---------------------\n\nPlotje is a Clojure library for composable plotting, inspired by\nthe Grammar of Graphics.\n\n\n## General info\n\n|||\n|-|-|\n|Website | [https://scicloj.github.io/plotje/](https://scicloj.github.io/plotje/)\n|Source |[![(GitHub repo)](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge\u0026logo=github\u0026logoColor=white)](https://github.com/scicloj/plotje)|\n|Deps |[![Clojars Project](https://img.shields.io/clojars/v/org.scicloj/plotje.svg)](https://clojars.org/org.scicloj/plotje)|\n|License |[MIT](https://github.com/scicloj/plotje/blob/main/LICENSE)|\n|Status |🛠alpha🛠|\n\n\n## Usage\n\nAdd to your `deps.edn`:\n\n```clojure\norg.scicloj/plotje {:mvn/version \"0.1.0\"}\n```\n\nSeveral core dependencies (kindly, fastmath, clojure2d, membrane,\nwadogo) are still on alpha or beta channels. Adopters may need\nto ride those alpha-channel transitives until they cut stable\nreleases.\n\nPlotje is intended to be used with data-visualization tools\nthat support the [Kindly](https://scicloj.github.io/kindly) convention\nsuch as [Clay](https://scicloj.github.io/clay/).\n\n\n## Quick example\n\nLine chart with point markers from plain Clojure data:\n```clj\n(-\u003e [{:month \"Jan\" :sales 120}\n     {:month \"Feb\" :sales 95}\n     {:month \"Mar\" :sales 140}\n     {:month \"Apr\" :sales 175}\n     {:month \"May\" :sales 160}\n     {:month \"Jun\" :sales 210}]\n    (pj/lay-line :month :sales)\n    pj/lay-point\n    (pj/options {:title \"Monthly Sales\"}))\n```\n![](readme_files/image1.svg)\n\nScatter plot matrix (SPLOM) — all pairwise combinations with color grouping:\n```clj\n(-\u003e (rdatasets/datasets-iris)\n    (pj/pose (pj/cross [:sepal-length :sepal-width\n                        :petal-length :petal-width]\n                       [:sepal-length :sepal-width\n                        :petal-length :petal-width])\n             {:color :species})\n    (pj/options {:title \"Iris SPLOM\"}))\n```\n![](readme_files/image2.svg)\n\n\n## License\n\nCopyright © 2025-2026 Scicloj\n\nDistributed under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscicloj%2Fplotje","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscicloj%2Fplotje","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscicloj%2Fplotje/lists"}