starvz_read: Read starvz trace files

View source: R/read_functions.R

starvz_readR Documentation

Read starvz trace files

Description

Read the directory of trace files (feather or parquet)
and the configuration file, and return a starvz_data class used in starvz functions

Usage

starvz_read(directory = ".",
               config_file = NULL, selective = TRUE)

Arguments

directory

Directory path of trace files

config_file

Path for configuration yaml file

selective

if True, only read data needed for creating panels activated in config

Value

The starvz_data with all tables

Examples


starvz_read("folder_to_parquet_files/")
starvz_read(
  directory = "folder_to_parquet_files/",
  config_file = "path_to_config.yaml"
)
starvz_read() # Read current directory


starvz documentation built on June 19, 2025, 1:08 a.m.

Related to starvz_read in starvz...