Skip to contents

Writes results_df (a data frame/tibble summary produced by build_simulation_result()) to path as a parquet file using nanoparquet. The data frame is coerced to a plain data.frame first so that tibble/vctrs columns parquet cannot represent are flattened.

Usage

write_results_parquet(results_df, path)

Arguments

results_df

A data.frame or tibble summary to write.

path

Character scalar. Destination parquet file path.

Value

Invisible path (invisibly), the path written to.

Details

Requires the suggested nanoparquet package; if it is not installed, rlang::check_installed() prompts (or errors) accordingly.