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
plot_pair_wise_scatter only works properly with categorical parameters if the data has been imported with load_results, if the data was generated directly with perform_experiments, you run into some dtype issues. This is because there is a type conversion in load_results
that is expected/necessary for correctly drawing boxes in plot_pair_wise_scatter.
In a normal EMA workflow, this probably isn't an issue, since normally you would save/load data before analysing it, but when debugging improved plotting functions, it can be a problem :)
Raising this issue for awareness. I know in the TODO there is something mentioned about moving from the whole category business to Enum or NamedTuple, so maybe this can be taken along there.
The text was updated successfully, but these errors were encountered:
plot_pair_wise_scatter
only works properly with categorical parameters if the data has been imported withload_results
, if the data was generated directly withperform_experiments
, you run into some dtype issues. This is because there is a type conversion inload_results
EMAworkbench/ema_workbench/util/utilities.py
Line 68 in 5628cc1
plot_pair_wise_scatter
.In a normal EMA workflow, this probably isn't an issue, since normally you would save/load data before analysing it, but when debugging improved plotting functions, it can be a problem :)
Raising this issue for awareness. I know in the TODO there is something mentioned about moving from the whole category business to Enum or NamedTuple, so maybe this can be taken along there.
The text was updated successfully, but these errors were encountered: