{"id":43581153,"url":"https://github.com/microbialman/VennItem","last_synced_at":"2026-02-15T06:01:06.250Z","repository":{"id":332401608,"uuid":"1133595342","full_name":"microbialman/VennItem","owner":"microbialman","description":"Generate Venn Diagrams with Items Listed in the Sections.","archived":false,"fork":false,"pushed_at":"2026-01-23T15:48:41.000Z","size":240,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-24T06:43:45.244Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/microbialman.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"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-01-13T15:05:06.000Z","updated_at":"2026-01-23T15:48:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/microbialman/VennItem","commit_stats":null,"previous_names":["microbialman/vennitem"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/microbialman/VennItem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microbialman%2FVennItem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microbialman%2FVennItem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microbialman%2FVennItem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microbialman%2FVennItem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microbialman","download_url":"https://codeload.github.com/microbialman/VennItem/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microbialman%2FVennItem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29471144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T05:26:30.465Z","status":"ssl_error","status_checked_at":"2026-02-15T05:26:21.858Z","response_time":118,"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":[],"created_at":"2026-02-04T00:00:30.409Z","updated_at":"2026-02-15T06:01:06.238Z","avatar_url":"https://github.com/microbialman.png","language":"R","funding_links":[],"categories":["Plot layers"],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# VennItem\n\nGenerate Venn diagrams from two or three sets, displaying the overlapping items as lists in the appropriate sections. The lists can be split into columns or shortened for large sets and the plot is generated using 'ggplot2' allowing further customisations.\n\n## Installation\n\nYou can install the development version of VennItem from [GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"pak\")\npak::pak(\"microbialman/VennItem\")\n```\n\n## Examples\n\nBasic example showing two small sets.\n\n```{r example1, fig.width=8, fig.height=8}\nlibrary(VennItem)\nsets \u003c- list(Fruit_A = c(\"apple\",\"banana\",\"coconut\",\"orange\"), Fruit_B = c(\"banana\",\"kiwi\",\"lemon\",\"orange\"), Fruit_C = c(\"banana\",\"kiwi\",\"apple\",\"pear\",\"lime\"))\nvennItem(sets, set_label_size = 4)\n\n```\n\nExample of larger sets showing column formatting ability.\n\n```{r example2, fig.width=8, fig.height=8}\n\nbig_sets \u003c- list(Fruit_A = c(\"apple\",\"banana\",\"durian\",\"lychee\",\"grapes\",\"pear\",\"melon\"),\n Fruit_B = c(\"banana\",\"kiwi\",\"satsuma\",\"orange\",\"lemon\",\"lime\"),\n Fruit_C = c(\"banana\",\"kiwi\",\"apple\",\"pear\",\"coconut\"))\n\nvennItem(big_sets, ncol_items = 2)\n\n```\n\nExample of larger sets showing shortening.\n\n```{r example3, fig.width=8, fig.height=8}\n\nbig_sets \u003c- list(Fruit_A = c(\"apple\",\"banana\",\"durian\",\"lychee\",\"grapes\",\"pear\",\"melon\"),\n Fruit_B = c(\"banana\",\"kiwi\",\"satsuma\",\"orange\",\"lemon\",\"lime\"),\n Fruit_C = c(\"banana\",\"kiwi\",\"apple\",\"pear\",\"coconut\"))\n\nvennItem(big_sets, max_items_per_region = 2)\n\n```\n\nExample showing basic numbering of set size.\n\n```{r example4, fig.width=8, fig.height=8}\nsets \u003c- list(Fruit_A = c(\"apple\",\"banana\",\"coconut\",\"orange\"), Fruit_B = c(\"banana\",\"kiwi\",\"lemon\",\"orange\"), Fruit_C = c(\"banana\",\"kiwi\",\"apple\",\"pear\",\"lime\"))\nvennItem(sets, max_items_per_region = 0)\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrobialman%2FVennItem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicrobialman%2FVennItem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrobialman%2FVennItem/lists"}