Skip to content

Commit

Permalink
Merge pull request #211 from NREL/rhorsey/fix-intensity-space
Browse files Browse the repository at this point in the history
Removing extra spaces from the word intensity in the plots.
  • Loading branch information
mpraprost authored Sep 17, 2024
2 parents b2fb2a3 + 9a3143e commit b4671de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postprocessing/comstockpostproc/plotting_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1848,8 +1848,8 @@ def plot_measure_utility_savings_distributions_by_fuel(self, df, output_dir):
# column name
col_name = self.col_name_to_nice_saving_name(df_enduse.name)
# manually add "total"
col_name = col_name.replace('Utility Bills Mean Bill Intensity', 'Utility Bills Total Bill Intensity')
col_name = col_name.replace('Bill Intensity', 'Bill Intensity')
col_name = col_name.replace('Utility Bills Mean Bill Intensity', 'Utility Bills Total Bill Intensity')
col_name = col_name.replace('Bill Intensity', 'Bill Intensity')
col_name = col_name.replace('Utility Bills ', '')
col_name = col_name.replace('Electricity Bill', 'Electricity Bill w/ Mean Rate')
col_name = col_name.replace('Total Bill', 'Total Bill w/ Mean Electricity Rate')
Expand Down

0 comments on commit b4671de

Please sign in to comment.