{"id":20454993,"url":"https://github.com/jumpingrivers/ibmsunburst","last_synced_at":"2025-04-13T03:35:50.800Z","repository":{"id":40510900,"uuid":"148301519","full_name":"jumpingrivers/ibmsunburst","owner":"jumpingrivers","description":"R 📦 for the IBM ☀📈 for the Personality Insights data","archived":false,"fork":false,"pushed_at":"2024-03-05T10:53:06.000Z","size":734,"stargazers_count":7,"open_issues_count":3,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-09-22T18:09:20.310Z","etag":null,"topics":["htmlwidgets","personality-insights","personality-profile","r","r-package","rstats","sunburst-chart"],"latest_commit_sha":null,"homepage":"https://jumpingrivers.github.io/ibmsunburst","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/jumpingrivers.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-11T10:38:36.000Z","updated_at":"2023-10-18T00:41:05.000Z","dependencies_parsed_at":"2024-11-15T11:17:44.817Z","dependency_job_id":"9040b934-aca0-4af1-8e2e-c14fd63ccfbf","html_url":"https://github.com/jumpingrivers/ibmsunburst","commit_stats":{"total_commits":59,"total_committers":8,"mean_commits":7.375,"dds":0.5254237288135593,"last_synced_commit":"53e86b57cbe21083e94cb836e766e8806d57db51"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jumpingrivers%2Fibmsunburst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jumpingrivers%2Fibmsunburst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jumpingrivers%2Fibmsunburst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jumpingrivers%2Fibmsunburst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jumpingrivers","download_url":"https://codeload.github.com/jumpingrivers/ibmsunburst/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248660030,"owners_count":21141228,"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","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":["htmlwidgets","personality-insights","personality-profile","r","r-package","rstats","sunburst-chart"],"created_at":"2024-11-15T11:17:41.208Z","updated_at":"2025-04-13T03:35:50.775Z","avatar_url":"https://github.com/jumpingrivers.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\u003c!-- badges: start --\u003e\n[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)\n[![CRAN status](https://www.r-pkg.org/badges/version/ibmsunburst)](https://CRAN.R-project.org/package=ibmsunburst)\n[![Codecov test\ncoverage](https://codecov.io/gh/jumpingrivers/ibmsunburst/branch/main/graph/badge.svg)](https://app.codecov.io/gh/jumpingrivers/ibmsunburst?branch=main)\n[![R-CMD-check](https://github.com/jumpingrivers/ibmsunburst/workflows/R-CMD-check/badge.svg)](https://github.com/jumpingrivers/ibmsunburst/actions)\n[![R-CMD-check](https://github.com/jumpingrivers/ibmsunburst/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jumpingrivers/ibmsunburst/actions/workflows/R-CMD-check.yaml)\n\u003c!-- badges: end --\u003e\n\n\n```{r, echo = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n fig.path = \"man/figures/\"\n)\n```\n\n# IBM Personality Insights sunburst diagrams in R\n\nThe goal of {ibmsunburst} is to wrap the [JavaScript library that IBM have produced](https://github.com/personality-insights/sunburst-chart/) for making sunburst personality insights charts for use in R and R Markdown documents.\n\nWork on this package was part-sponsored by [Hendrik Feddersen](//github.com/Hendrik147), a prominent HR Analytics advocate.\n\n## Installations\n\nInstall {ibmsunburst} from GitHub\n\n```r\n# install.packages(\"remotes\")\nremotes::install_gitub(\"jumpingrivers/imbsunburst\")\n```\n\n## Example\n\nBelow we input the path to a JSON file corresponding to the output of [IBM Watson Personality Insights service](https://www.ibm.com/watson/services/personality-insights/) and visualize it.\n\n```{r sunburst}\njson_path \u003c- system.file(\n  \"extdata\", \"profiles\",\n  \"en_v2.json\", package = \"ibmsunburst\"\n)\n\nibmsunburst::ibmsunburst(json = json_path, version = \"v2\")\n\n```\n\nYou can use the function on a list, on JSON or on a filepath, making it quite handy for integration in your workflow. \n\nThere is no R wrapper for the [IBM Personality Insight API](https://www.ibm.com/docs/en/app-connect/containers_cd?topic=SSTTDS_contcd/com.ibm.ace.icp.doc/localconn_ibmwatsonpi.html) itself yet, but you could use it with {httr}, as shown in a very short example in the vignette.\n\n### Dev notes\n\n[Kent Russell](https://github.com/timelyportfolio) added some documentation of the changes that he made to the source [sunburst-chart](https://github.com/personality-insights/sunburst-chart) JavaScript library. Find them [here](inst/dev_notes.md).\n\n## Code of Conduct\n  \nPlease note that the ibmsunburst project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjumpingrivers%2Fibmsunburst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjumpingrivers%2Fibmsunburst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjumpingrivers%2Fibmsunburst/lists"}