export_util module
- timeseries_compute.export_util.export_data(data: Any, folder: str = 'outputs', name: str | None = None) Any[source]
Save any data to a file with automatically incremented counter and inferred variable name. Returns the original data for piping operations.
Only saves data if export_data_mode is True.
- Parameters:
data – The data to save (DataFrame, dict, list, string, etc.)
folder – Directory to save files in
name – Optional explicit name to use instead of auto-detection
- Returns:
The original data (for chaining)