{"id":32201033,"url":"https://github.com/showteeth/ggpie","last_synced_at":"2025-10-22T03:59:09.439Z","repository":{"id":38243108,"uuid":"496250477","full_name":"showteeth/ggpie","owner":"showteeth","description":"ggpie - A ggplot2 extension to create pie, donut and rose pie plot","archived":false,"fork":false,"pushed_at":"2023-10-30T04:50:09.000Z","size":32633,"stargazers_count":48,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-22T03:58:57.536Z","etag":null,"topics":["donut","ggplot2","pie","rosepie"],"latest_commit_sha":null,"homepage":"https://showteeth.github.io/ggpie","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/showteeth.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2022-05-25T13:48:39.000Z","updated_at":"2025-09-04T23:40:20.000Z","dependencies_parsed_at":"2025-09-08T15:37:14.469Z","dependency_job_id":null,"html_url":"https://github.com/showteeth/ggpie","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/showteeth/ggpie","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/showteeth%2Fggpie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/showteeth%2Fggpie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/showteeth%2Fggpie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/showteeth%2Fggpie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/showteeth","download_url":"https://codeload.github.com/showteeth/ggpie/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/showteeth%2Fggpie/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280376547,"owners_count":26320275,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-22T02:00:06.515Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["donut","ggplot2","pie","rosepie"],"created_at":"2025-10-22T03:59:08.671Z","updated_at":"2025-10-22T03:59:09.431Z","avatar_url":"https://github.com/showteeth.png","language":"R","funding_links":[],"categories":[],"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# ggpie - A ggplot2 extension to create pie, donut and rose pie plot\n\n\u003cimg src = \"man/figures/ggpie_hex.png\" align = \"right\" width = \"200\"/\u003e\n\n[![CRAN](https://www.r-pkg.org/badges/version/ggpie?color=orange)](https://cran.r-project.org/package=ggpie)\n[![CRAN_download](http://cranlogs.r-pkg.org/badges/grand-total/ggpie?color=blue)](https://cran.r-project.org/package=ggpie)\n![License](https://img.shields.io/badge/license-MIT-green)\n[![CODE_SIZE](https://img.shields.io/github/languages/code-size/showteeth/ggpie.svg)](https://github.com/showteeth/ggpie)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.6580728.svg)](https://doi.org/10.5281/zenodo.6580728)\n\n\n## Introduction\n`ggpie` aims to create **pie (2D and 3D)**, **donut** and **rose pie** plot with the `ggplot2` plotting system which implemented the grammar of graphics. It contains five main functions:\n\n* `ggpie`: Create 2D pie plot with single group variable.\n* `ggdonut`: Create 2D donut plot with single group variable.\n* `ggnestedpie`: Create 2D nested pie plot with two group variables.\n* `ggpie3D`: Create 3D pie plot with single group variable.\n* `ggrosepie`: Create rose pie plot with single or two group variables.\n\n\u003chr /\u003e\n\n\n## Installation\nYou can install the released version of `ggpie` from [CRAN](https://cran.r-project.org/web/packages/ggpie/index.html) with:\n\n```{r eval=FALSE}\ninstall.packages(\"ggpie\")\n```\n\nOr install the package via the [Github repository](https://github.com/showteeth/ggpie):\n```{r eval=FALSE}\n# install.package(\"remotes\")   #In case you have not installed it.\nremotes::install_github(\"showteeth/ggpie\")\n```\n\nIn general, it is **recommended** to install from [Github repository](https://github.com/showteeth/ggpie) (update more timely).\n\n\u003chr /\u003e\n\n## Citation\n```{r citation}\ncitation(\"ggpie\")\n```\n\n\u003chr /\u003e\n\n## Contributing\nPlease note that the `ggpie` project is released with a [Contributor Code of Conduct](https://www.contributor-covenant.org/version/1/0/0/code-of-conduct/). By contributing to this project, you agree to abide by its terms.\n\n\u003cbr /\u003e\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshowteeth%2Fggpie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshowteeth%2Fggpie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshowteeth%2Fggpie/lists"}