{"id":22088009,"url":"https://github.com/coatless-rpkg/uiucdata","last_synced_at":"2025-03-23T22:41:01.449Z","repository":{"id":89518997,"uuid":"103297901","full_name":"coatless-rpkg/uiucdata","owner":"coatless-rpkg","description":"University of Illinois Urbana-Champaign (UIUC) R data package containing grade distributions, enrollment, finance, and more!","archived":false,"fork":false,"pushed_at":"2024-05-29T05:19:55.000Z","size":12927,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-19T19:45:25.258Z","etag":null,"topics":["data-package","r","r-data-package","rstats","uiuc","university-of-illinois"],"latest_commit_sha":null,"homepage":"https://r-pkg.thecoatlessprofessor.com/uiucdata/","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/coatless-rpkg.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},"funding":{"github":["coatless"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2017-09-12T16:55:00.000Z","updated_at":"2024-05-29T05:17:36.000Z","dependencies_parsed_at":"2024-01-16T00:20:32.388Z","dependency_job_id":"1260b7e7-6666-4567-b7bf-d764c1bd9a08","html_url":"https://github.com/coatless-rpkg/uiucdata","commit_stats":{"total_commits":14,"total_committers":3,"mean_commits":4.666666666666667,"dds":0.2857142857142857,"last_synced_commit":"e0fc8b85752e94b47fb05b0761ee600603c25a1d"},"previous_names":["coatless-rpkg/uiucdata","illinois-r/uiucdata"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coatless-rpkg%2Fuiucdata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coatless-rpkg%2Fuiucdata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coatless-rpkg%2Fuiucdata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coatless-rpkg%2Fuiucdata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coatless-rpkg","download_url":"https://codeload.github.com/coatless-rpkg/uiucdata/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245181507,"owners_count":20573717,"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":["data-package","r","r-data-package","rstats","uiuc","university-of-illinois"],"created_at":"2024-12-01T02:07:20.967Z","updated_at":"2025-03-23T22:41:01.409Z","avatar_url":"https://github.com/coatless-rpkg.png","language":"R","readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, echo = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"README-\"\n)\n```\n\n\n\u003c!-- badges: start --\u003e\n[![R-CMD-check](https://github.com/illinois-r/uiucdata/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/illinois-r/uiucdata/actions/workflows/R-CMD-check.yaml)\n\u003c!-- badges: end --\u003e\n\n# uiucdata: An R Data Package for UIUC Data\n\nThe goal of `uiucdata` is to provide data sets available at the\n[University of Illinois at Urbana-Champaign (UIUC)](http://illinois.edu/) \nto a diverse group of individuals with a low barrier for entry.\n\n## Installation\n\nYou can install `uiucdata` from github with:\n\n```{r gh-installation, eval = FALSE}\n# install.packages(\"remotes\")\nremotes::install_github(\"coatless-rpkg/uiucdata\")\n```\n\n## Example\n\nThere are two ways to access the data contained within this package. \n\nThe first is to load the package itself and type the name of a data set.\nThis approach takes advantage of _R_'s lazy loading mechansim, which avoids\nloading the data until it is used in _R_ session. For details on \nhow lazy loading works, please see [Section 1.17: Lazy Loading](https://cran.r-project.org/doc/manuals/r-release/R-ints.html#Lazy-loading)\nof the [R Internals](https://cran.r-project.org/doc/manuals/r-release/R-ints.html)\nmanual.\n\n```{r use-data-package, eval = FALSE}\n# Load the `uiucdata` package\nlibrary(\"uiucdata\")\n\n# See the first 10 observations of the `fall_enrolled_ranking` dataset\nhead(fall_enrolled_ranking)\n\n# View the help documentation for `fall_enrolled_ranking`\n?fall_enrolled_ranking\n```\n\nThe second approach is to use the `data()` command to load data on the \nfly without and type the name of a data set.\n\n```{r use-data-call, eval = FALSE}\n# Loading `fall_enrolled_ranking` without a `library(ucidata)` call\ndata(\"fall_enrolled_ranking\", package = \"uiucdata\")\n\n# See the first 10 observations of the `fall_enrolled_ranking` dataset\nhead(fall_enrolled_ranking)\n\n# View the help documentation for `fall_enrolled_ranking`\n?fall_enrolled_ranking\n```\n\n\n## Included Data Sets\n\nThe following data sets are included in the `ucidata` package:\n\n- [Division of Management Information](http://www.dmi.illinois.edu/)\n    - [Student Enrollment by Curriculum and Class Level](http://www.dmi.illinois.edu/stuenr/#class)\n- [Freedom of Information Data Sets](https://www.uillinois.edu/cms/One.aspx?portalId=1324\u0026pageId=171041)\n    - Grade Distribution Data\n- [Center for Innovation in Teaching and Learning (CITL)](http://citl.illinois.edu/)\n    - Teachers Ranked as Excellent (Data courtesy of Wade-Fagen, see the [project repo for more details](https://github.com/wadefagen/Teachers-Ranked-As-Excellent-UIUC))\n\n## Build Scripts\n\nWant to see how each data set was imported? \nCheck out the [`data-raw`](https://github.com/coatless-rpkg/uiucdata/tree/master/data-raw) folder!\n\n## Submodules\n\nThis repository uses submodules as a way to store data. This allows for us\nto have the repositories contents as the final data product. As a result, \nwe avoid increase the size of the repository since the raw data is now tracked\nin a separate repository. For more details, please see GitHub's [Working with Submodules ](https://github.com/blog/2104-working-with-submodules) post.\n\n\n### Example submodule inclusion statement\n\n```bash\n# Add Excellent Teacher Data in data-raw\ngit submodule add https://github.com/wadefagen/Teachers-Ranked-As-Excellent-UIUC data-raw/excellent-teachers\n```\n\n**NB** This repository is made by an employee of the University of Illinois at\nUrbana-Champaign who is not the author of this data package.\n\n----\n\nRaw grade data\n\n```bash\ngit submodule add https://github.com/coatless-rpkg/uiucgradedata data-raw/grade-dist\n```\n","funding_links":["https://github.com/sponsors/coatless"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoatless-rpkg%2Fuiucdata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoatless-rpkg%2Fuiucdata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoatless-rpkg%2Fuiucdata/lists"}