Read a previously shared data set
Value
Depends on the type argument:
"csv": a tibble (viareadr::read_csv())"parquet": a tibble (viaarrow::read_parquet())"json"withas_data_frame = TRUE(default): a tibble"json"withas_data_frame = FALSE: a nested list mirroring the JSON structure
Columns depend on the data that was shared and cannot be known in
advance. Use the corresponding read_*() function documentation to
understand the expected columns for each resource type.
Details
This function wraps readr::read_csv(), arrow::read_parquet(), and JSON
parsing logic. The type should match the format specified when the data
were shared.
Additional arguments in ... are passed to the underlying read functions to
control how data is imported (e.g., column types for CSV).