Besides mitigating the impact for users with manually changed preferences - why the change?
Where is the benefit?
my 1st guess: to better teach/understand the differences between weight and freq - Freq and Weight: better documentation
(e.g. the impact on median).
let's try ...
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
new column ("freq", formula(random integer(10)));
new column ("weight_", formula(random uniform (2)));
Graph Builder(
Variables( X( :sex ), Overlay( :age ), Frequency( :freq ) ),
Elements( Bar( X, Summary Statistic( "Max" ) ) )
);
Doesn't seem to be the case - even "max" is 1 for freq = 1 ... 10:

Some of the aggregations [min, max, median ...] seem to calculate the result on row level ,
not on on "bar" level like mean, cumulative %, percent of .....
Plots with freq=1 and random freq. I added colors to the background to highlight the differences.
