
Read accident data from CSV files
read_accident_data.Rd
read_accident_data()
reads accident data from multiple CSV files,
processes each file, and combines the data into three categories:
accident_info
: Basic accident information including date, location, and conditionsperson_info
: Information about individuals involved in the accidentshighway_info
: Information specific to accidents that occurred on highways/expressways
Examples
if (FALSE) { # \dontrun{
# Read main and supplementary data for 2023
read_accident_data(c("example/honhyo_2023.csv", "example/hojuhyo_2023.csv"))
} # }