Fix csv-export error with new hyperopt format
This commit is contained in:
parent
0c9b913cad
commit
639c83575b
@ -376,6 +376,7 @@ class HyperoptTools():
|
|||||||
trials['Avg profit'] = trials['Avg profit'].apply(
|
trials['Avg profit'] = trials['Avg profit'].apply(
|
||||||
lambda x: f'{x * perc_multi:,.2f}%' if not isna(x) else ""
|
lambda x: f'{x * perc_multi:,.2f}%' if not isna(x) else ""
|
||||||
)
|
)
|
||||||
|
if perc_multi == 1:
|
||||||
trials['Avg duration'] = trials['Avg duration'].apply(
|
trials['Avg duration'] = trials['Avg duration'].apply(
|
||||||
lambda x: f'{x:,.1f} m' if isinstance(
|
lambda x: f'{x:,.1f} m' if isinstance(
|
||||||
x, float) else f"{x.total_seconds() // 60:,.1f} m" if not isna(x) else ""
|
x, float) else f"{x.total_seconds() // 60:,.1f} m" if not isna(x) else ""
|
||||||
|
Loading…
Reference in New Issue
Block a user