You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cfe316
changed the title
[Feature]: Don't output duplicate data in additional files
[Proposal]: Don't output duplicate data in additional files
Aug 28, 2024
Feature description
write_charging_cost
outputsChargingCost.csv
.write_energy_revenue
outputsEnergyRevenue.csv
.write_subsidy_revenue
outputs[Reg]SubsidyRevenue.csv
.write_operating_reserve_price_revenue
outputsOperatingReserveRevenue.csv
andOperatingRegulationRevenue.csv
.Each of these have a single column of interesting data, with one row per resource.
All of them are straightforwardly aggregated into
NetRevenue.csv
.Motivation
Not outputting these 4-to-6 additional files would remove clutter in the results directory.
Implementation strategy
Remove the csv-writing calls from each. Just return the dataframes, which are already done.
Change the names of these functions from
write_*
toprepare_*
(or some other prefix, likeprepare_output_*
).Clean up unneeded columns (
R_ID
,cluster
,zone
) from the individual dataframes.Additional context
No response
The text was updated successfully, but these errors were encountered: