Skip to contents

This function curates ENNTT data from a specified directory. It searches for files with .dat or .tok extensions, extracts the unique types from these files, and then curates each type of data using the curate_enntt_file() function. The curated data from each type is then combined into a single data frame which is returned.

Usage

curate_enntt_data(dir_path)

Arguments

dir_path

A string. The path to the directory containing the data files.

Value

A data frame. The curated ENNTT data.

Examples

if (FALSE) {
curated_data <- curate_enntt_data("/path/to/data")
}