All Projects → OpenIntroStat → Openintro

OpenIntroStat / Openintro

Licence: gpl-3.0
📦 R package for data and supplemental functions for OpenIntro resources

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Openintro

Rgbif
Interface to the Global Biodiversity Information Facility API
Stars: ✭ 113 (-35.8%)
Mutual labels:  data, rstats
Charlatan
Create fake data in R
Stars: ✭ 209 (+18.75%)
Mutual labels:  data, rstats
Climate Change Data
🌍 A curated list of APIs, open data and ML/AI projects on climate change
Stars: ✭ 195 (+10.8%)
Mutual labels:  data, rstats
rsnps
Wrapper to a number of SNP web APIs
Stars: ✭ 44 (-75%)
Mutual labels:  data, rstats
Getlandsat
get landsat 8 images and metadata
Stars: ✭ 47 (-73.3%)
Mutual labels:  data, rstats
kaggler
🏁 API client for Kaggle
Stars: ✭ 50 (-71.59%)
Mutual labels:  data, rstats
Taxize
A taxonomic toolbelt for R
Stars: ✭ 209 (+18.75%)
Mutual labels:  data, rstats
Rtimes
R wrapper for NYTimes API for government data - ABANDONED
Stars: ✭ 55 (-68.75%)
Mutual labels:  data, rstats
Dataspice
🌶 Create lightweight schema.org descriptions of your datasets
Stars: ✭ 137 (-22.16%)
Mutual labels:  data, rstats
Stats
A well tested and comprehensive Golang statistics library package with no dependencies.
Stars: ✭ 2,196 (+1147.73%)
Mutual labels:  data
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-2.84%)
Mutual labels:  data
Dop
JavaScript implementation for Distributed Object Protocol
Stars: ✭ 163 (-7.39%)
Mutual labels:  data
Plotly
An interactive graphing library for R
Stars: ✭ 2,096 (+1090.91%)
Mutual labels:  rstats
General Store
Simple, flexible store implementation for Flux. #hubspot-open-source
Stars: ✭ 171 (-2.84%)
Mutual labels:  data
Pandas Datareader
Extract data from a wide range of Internet sources into a pandas DataFrame.
Stars: ✭ 2,183 (+1140.34%)
Mutual labels:  data
Everypolitician Data
data for national legislatures worldwide
Stars: ✭ 174 (-1.14%)
Mutual labels:  data
Image keras
Building an image classifier using keras
Stars: ✭ 162 (-7.95%)
Mutual labels:  rstats
Writexl
Portable, light-weight data frame to xlsx exporter for R
Stars: ✭ 162 (-7.95%)
Mutual labels:  rstats
Databay
Databay is a Python interface for scheduled data transfer. It facilitates transfer of (any) data from A to B, on a scheduled interval.
Stars: ✭ 175 (-0.57%)
Mutual labels:  data
Nomnoml
Sassy 'UML' Diagrams for R
Stars: ✭ 173 (-1.7%)
Mutual labels:  rstats

openintro

CRAN status R build status

Supplemental functions and data for ‘OpenIntro’ resources, which includes open-source textbooks and resources for introductory statistics at openintro.org. The package contains data sets used in our open-source textbooks along with custom plotting functions for reproducing book figures. The package also contains the datasets used in OpenIntro labs. Note that many functions and examples include color transparency; some plotting elements may not show up properly (or at all) when run in some versions of Windows operating system.

Installation

You can install the released version of openintro from CRAN with:

install.packages("openintro")

You can install the development version of openintro from GitHub with:

# install.packages("devtools")
library(devtools)
install_github("OpenIntroStat/openintro")

This package was produced as part of the OpenIntro project. For the accompanying textbook, visit openintro.org. A PDF of the textbook is free and paperbacks can be purchased online (royalty-free).

Questions, bugs, feature requests

You can file an issue to get help, report a bug, or make a feature request.

When filing an issue to get help or report a bug, please make a minimal reproducible example using the reprex package. If you haven’t heard of or used reprex before, you’re in for a treat! Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it’ll take you to learn what it’s all about). For additional reprex pointers, check out the Get help! section of the tidyverse site.

Before opening a new issue, be sure to search issues and pull requests to make sure the bug hasn’t been reported and/or already fixed in the development version. By default, the search will be pre-populated with is:issue is:open. You can edit the qualifiers (e.g. is:pr, is:closed) as needed. For example, you’d simply remove is:open to search all issues in the repo, open or closed.

Contributing

Process for adding new data to the package

The following steps use the devtools and usethis packages for various steps. We recommend using this process when suggesting new datasets to be added to the package. If the dataset is large (>500MB) or you’d like to add a function, please open an issue first for discussion before making the pull request.

  1. Fork and clone the repo with usethis::create_from_github("OpenIntroStat/openintro")
    • Note: If you have write access to the repo, you can skip this step.
  2. Start a new pull request with usethis::pr_init("BRANCH-NAME"), where BRANCH-NAME is an informative branch name.
  3. If adding a file that is not an .rda file to begin with (Excel, csv, etc.), create a folder in the data-raw folder with the name of the dataset (how you’d like it to show up in the package). Please use snake_case for naming, e.g. name_of_dataset.
  4. Place your dataset in its raw form in the folder.
  5. Also in the data-raw folder, create a new R script called name_of_dataset-dataprep.R and write the code needed to read in the file, make any modifications to the data that are needed (if any), and end with usethis::use_data() to save the data in the package as an .rda file with the ideal compression. See examples from other folders in data-raw for sample code. The contents of this folder do not end up in the package (the entire folder is ignored in the .Rbuildignore) so you don’t need to worry about adding package dependencies etc.
  6. In the R folder, create an R script called data-name_of_dataset and add documentation using Roxygen style. See other documentation files for help with style. In the examples, use tidyverse syntax but do not use library(tidyverse) and only use the relevant packages, e.g. library(dplyr), library(ggplot2).
  7. Restart R and run devtools::load_all() to make sure the data loads and run your examples to confirm they all work.
  8. Run devtools::docment(), restart R, and then devtools::load_all(). Then, check out ?name_of_dataset to make sure the documentation looks as expected.
  9. Run devtools::check(). The only NOTE you should see as a result of the check should be about the package size. If any other ERRORs, NOTEs, or WARNINGs are generated, resolve them or open an issue for help.
  10. In the pkgdown.yml file, add the name of the dataset under reference, in the correct alphabetical order.
  11. Add a note in the NEWS.md with the new dataset you’ve added with a link to your GitHub username so we can acknowledge your contribution, e.g. “added by @mine-cetinkaya-rundel”.

Code of Conduct

Please note that the openintro project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].