library(knitr)

R-CMD-check
CodeFactor

ds4ling

An R package of datasets and functions made to complement the ds4ling course.

Last update: r Sys.Date()

Overview

The purpose of this package is to provide datasets and functions that are used in the ds4ling course. The datasets vary in difficulty and present different problems common when tidying data.

Installation

You can install the development version from GitHub with:

install.packages("devtools")
devtools::install_github("jvcasillas/ds4ling")

Datasets

#
# Automate TOC
#
# Get list of folders in current directory
datasets <- dir(path = "./data", pattern = "*.rda")

# remove .rda
list_elements <- gsub('.rda', '', datasets)

# Combine everything into an unordered list
cat(paste0('- ', list_elements, '\n'))


jvcasillas/ds4ling documentation built on March 4, 2025, 11:18 p.m.