edudat

A package for educational datasets


License
MIT
Install
pip install edudat==0.3

Documentation

Data Repository

This repository contains datasets as well as R and Python packages for teaching statistics, data science and the like.

Structure

  • data/: Contains the CSV data.
  • R/: Contains the R package edudat.
  • python/: Contains the Python package edudat.

Installation and Usage

R

  1. Installation of the R Package:

    • Install the devtools package if you haven't already:

      install.packages("devtools")
    • Install the edudat package directly from GitHub:

      devtools::install_github("tensorchiefs/data/R/edudat")
  2. Using the R Package:

    • Load the edudat package and datasets:
      library(edudat)
      df1 <- load_data("challenger.csv")

Python

  1. Installation of the Python Package:

    • Install the edudat package from PyPI:
      pip install edudat
    • Install the edudat package directly from GitHub (currently not working):
      pip install git+https://github.com/tensorchiefs/data.git#subdirectory=python/edudat
  2. Using the Python Package:

    • Load the CSV data in Python:
      from edudat import load_data
      
      df1 = load_data("challenger.csv")

Contributing

If you would like to contribute to this repository, have a look at the contribution howto.