{"id":28517361,"url":"https://github.com/ropengov/rqog","last_synced_at":"2026-03-10T04:02:34.746Z","repository":{"id":12317392,"uuid":"14952743","full_name":"rOpenGov/rqog","owner":"rOpenGov","description":"Download data from the Quality of Government Institute data","archived":false,"fork":false,"pushed_at":"2026-02-26T09:30:31.000Z","size":22772,"stargazers_count":16,"open_issues_count":1,"forks_count":1,"subscribers_count":8,"default_branch":"master","last_synced_at":"2026-02-26T13:18:08.018Z","etag":null,"topics":["data-package","r","r-package","rstats"],"latest_commit_sha":null,"homepage":"http://ropengov.github.io/rqog/","language":"HTML","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/rOpenGov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2013-12-05T12:22:04.000Z","updated_at":"2026-02-19T05:57:33.000Z","dependencies_parsed_at":"2022-09-04T17:40:37.580Z","dependency_job_id":"deee43aa-86f2-4f4f-b62b-65146da37487","html_url":"https://github.com/rOpenGov/rqog","commit_stats":{"total_commits":97,"total_committers":4,"mean_commits":24.25,"dds":"0.31958762886597936","last_synced_commit":"5412c245d6e7cbe9b65e10b19eab30f22c30d390"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rOpenGov/rqog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rOpenGov%2Frqog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rOpenGov%2Frqog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rOpenGov%2Frqog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rOpenGov%2Frqog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rOpenGov","download_url":"https://codeload.github.com/rOpenGov/rqog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rOpenGov%2Frqog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30324185,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T01:36:58.598Z","status":"online","status_checked_at":"2026-03-10T02:00:06.579Z","response_time":106,"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":["data-package","r","r-package","rstats"],"created_at":"2025-06-09T05:07:47.008Z","updated_at":"2026-03-10T04:02:34.738Z","avatar_url":"https://github.com/rOpenGov.png","language":"HTML","readme":"\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n# rqog-package: download data from the Quality of Government Institute data \u003ca href='https://ropengov.github.io/rqog/'\u003e\u003cimg src='man/figures/logo.png' align=\"right\" height=\"139\" /\u003e\u003c/a\u003e\n\n\u003c!-- badges: start --\u003e\n\n[![rOG-badge](https://ropengov.github.io/rogtemplate/reference/figures/ropengov-badge.svg)](http://ropengov.org/)\n[![Lifecycle:\nmaturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)\n[![CRAN\nstatus](https://www.r-pkg.org/badges/version/rqog)](https://CRAN.R-project.org/package=rqog)\n\u003c!-- badges: end --\u003e\n\nDownload the latest and archived datasets from the [Quality of\nGovernment Institute](https://qog.pol.gu.se/data) using the function\n`read_qog()`. See\n[`?read_qog`](http://ropengov.github.io/rqog/reference/read_qog.html)\nfor help, [package\nvignette](http://ropengov.github.io/rqog/articles/rqog_tutorial.html)\nfor more examples and\n[shiny.vaphana.com/rqog_app](https://shiny.vaphana.com/rqog_app/) for\ninteractive metadata shiny.\n\n## Installation\n\n``` r\nremotes::install_github(\"ropengov/rqog\")\n```\n\n## Use\n\n**Download data**\n\n``` r\nlibrary(rqog)\ndat \u003c- read_qog(which_data = \"standard\", data_type = \"time-series\")\n```\n\n**Browse metadata**\n\n``` r\nlibrary(rqog)\nmeta_std_ts_2023[grepl(\"human development\", meta_std_ts_2023$name, ignore.case = TRUE),]\n#\u003e          code                    name value label   class\n#\u003e 1416  iiag_hd       Human Development    NA  \u003cNA\u003e numeric\n#\u003e 1875 undp_hdi Human Development Index    NA  \u003cNA\u003e numeric\n```\n\n**Plot an indicator**\n\n``` r\nlibrary(ggplot2)\nggplot(dat[!is.na(dat$undp_hdi),], \n       aes(x = year, y = undp_hdi, color = cname)) + \n  geom_line() + \n  theme(legend.position = \"none\")\n```\n\n\u003cimg src=\"man/figures/README-unnamed-chunk-5-1.png\" width=\"100%\" /\u003e\n\nCopyright (C) 2012-2023 Markus Kainu \u003cmarkus.kainu@kapsi.fi\u003e.\nMIT-licence.\n\n## Disclaimer\n\nThis package is in no way officially related to or endorsed by Quality\nof Government Institute.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fropengov%2Frqog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fropengov%2Frqog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fropengov%2Frqog/lists"}