{"id":22752075,"url":"https://github.com/jack-davison/ggopenair","last_synced_at":"2025-07-31T04:07:09.443Z","repository":{"id":89607960,"uuid":"561323810","full_name":"jack-davison/ggopenair","owner":"jack-davison","description":"{ggplot2} incarnation of {openair} ☁️","archived":false,"fork":false,"pushed_at":"2024-06-27T09:19:18.000Z","size":32948,"stargazers_count":7,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-21T14:19:07.791Z","etag":null,"topics":["air-quality","airquality","openair","package","r","rpackage"],"latest_commit_sha":null,"homepage":"https://jack-davison.github.io/ggopenair/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jack-davison.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2022-11-03T12:55:30.000Z","updated_at":"2025-01-12T07:26:30.000Z","dependencies_parsed_at":"2023-09-21T20:06:03.123Z","dependency_job_id":"864e4956-f40d-4ce6-a0be-5abc2b78320f","html_url":"https://github.com/jack-davison/ggopenair","commit_stats":{"total_commits":103,"total_committers":2,"mean_commits":51.5,"dds":"0.029126213592232997","last_synced_commit":"47bf958a6149bdb6ed3a198da6c9b1e82fea723c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jack-davison/ggopenair","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jack-davison%2Fggopenair","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jack-davison%2Fggopenair/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jack-davison%2Fggopenair/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jack-davison%2Fggopenair/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jack-davison","download_url":"https://codeload.github.com/jack-davison/ggopenair/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jack-davison%2Fggopenair/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267985399,"owners_count":24176467,"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-07-31T02:00:08.723Z","response_time":66,"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":["air-quality","airquality","openair","package","r","rpackage"],"created_at":"2024-12-11T05:09:34.551Z","updated_at":"2025-07-31T04:07:09.407Z","avatar_url":"https://github.com/jack-davison.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\neditor_options: \n  chunk_output_type: console\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r knitropts, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/readme-\",\n  fig.height = 4.5,\n  fig.align = \"center\"\n)\n```\n\n# ggopenair: open source air quality data analysis using ggplot2 \u003ca href=\"https://jack-davison.github.io/ggopenair/\"\u003e\u003cimg src=\"man/figures/logo.png\" align=\"right\" height=\"139\" /\u003e\u003c/a\u003e\n\n\u003c!-- badges: start --\u003e\n[![CRAN status](https://www.r-pkg.org/badges/version/ggopenair)](https://CRAN.R-project.org/package=ggopenair)\n\u003c!-- badges: end --\u003e\n\nThe goal of `ggopenair` is to bridge the gap between the data analysis functions of `openair` and the flexibility of `ggplot2`. One of the key strengths of `ggplot2` over `lattice` is that it allows plots to be manipulated *after* they are created, which allows for a much more flexible plotting experience. Unlike `lattice`, `ggplot2` is also being actively developed and extended, which `ggopenair` can take advantage of.\n\n## Installation\n\nYou can install the development version of ggopenair from [GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"remotes\")\nremotes::install_github(\"jack-davison/ggopenair\")\n```\n\n## Preview\n\nA more thorough overview of `{ggopenair}` can be found on the package website: \u003chttps://jack-davison.github.io/ggopenair/\u003e.\n\n```{r demo, fig.height=8, fig.width=10, echo=FALSE, warning=FALSE, message=FALSE, error=FALSE}\nlibrary(ggopenair)\nlibrary(ggplot2)\nlibrary(patchwork)\n\nplt \u003c- polar_plot(marylebone, \"nox\") + theme_polar() +\n  scale_y_continuous(breaks = seq(0, 12, 4))\n\nclassic \u003c- plt + scale_opencolours_c() + ggtitle(\"Classic\")\n\nsqrt_trans \u003c- plt + scale_opencolours_c(trans = c(\"sqrt\")) +\n  ggtitle(\"Scale Transform\")\n\nsteps \u003c- plt + ggtitle(\"Binned\") +\n  scale_color_stepsn(\n    colours = openair::openColours(),\n    n.breaks = 10\n  )\n\nannotated \u003c- classic + ggtitle(\"Annotated\") +\n  annotate_polar_wedge(\"S\", \"W\", fill = \"black\") +\n  annotate(\"label\",\n    x = 225, y = 8, fill = \"white\", color = \"red\",\n    label = \"watch out\\nover here!\"\n  )\n\nclassic + sqrt_trans + steps + annotated\n```\n\n## Code of Conduct\n\nPlease note that the ggopenair project is released with a [Contributor Code of Conduct](https://jack-davison.github.io/ggopenair/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%2Fjack-davison%2Fggopenair","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjack-davison%2Fggopenair","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjack-davison%2Fggopenair/lists"}