About Diverse Data Hub
Diverse Data Hub is an open educational resource offering curated datasets focused on equity, diversity, inclusion, and other socially relevant topics. It is designed to support students, educators, and researchers in accessing and working with meaningful data.
Datasets can be accessed via the diversedata packages for R and Python, allowing for straightforward integration into data science workflows. Each dataset includes detailed documentation and contextual background to support informed exploration and connection to real-world topics. Example case studies are also included to illustrate practical applications.
Featured Datasets
Women’s March Madness
This dataset tracks every NCAA Division I Women’s Basketball Tournament appearance since 1982 up until 2018. It includes team seeds, results, bid types, season and conference records, and regional placements. Useful for analyzing team success, seeding impact, conference strength, and historical trends in women’s college basketball over four decades.
BC Indigenous Businesses
The BC Indigenous Business Listings dataset, compiled in 2025 by the Government of British Columbia, offers a detailed snapshot of Indigenous-owned businesses throughout the province. It includes information on the Indigenous entrepreneurship in urban and rural areas. This dataset highlights economic activities across various traditional territories and sectors.
Install diversedata
Prerequisites
R(>= 3.5): Download from CRANdevtools(R package)install.packages("devtools")
Installation
Install diversedata directly from GitHub using:
devtools::install_github("diverse-data-hub/diversedata")Usage
Once installed, you can explore the available datasets and their documentation:
library(diversedata)
# List available datasets
data(package = "diversedata")
# View documentation for a specific dataset
?wildfire
# To load a dataset into the environment:
data("wildfire")Prerequisites
Python(>= 3.12) &pip: Download from python.orgpandasPython package (>= 2.3.1): This will be installed automatically when thediversedataPython package is installed via pip
Installation
The diversedata Python package can be installed via pip:
pip install diversedataUsage
Once installed, you can explore the available datasets and their documentation:
import diversedata as dd
# List available datasets
dd.list_available_datasets()
# View documentation for a specific dataset
dd.print_data_description('wildfire')
# To load a dataset and save it to an object:
df = dd.load_data('wildfire')License
CC BY 4.0