On Tue, 21 Apr 2020, Artur Tarassow wrote:
I found a small bug today. The series meta-information
"graph-name" is not
considered in a factorized boxplot. This is with latest git version using
Ubuntu 19.10.
<hansl>
clear
set verbose off
open grunfeld.gdt -q -p
function void foo (const series y, const series factor)
string graph_name_y = sprintf("%s", argname(y))
setinfo y --graph-name=@graph_name_y
boxplot y factor --factorized --output=display # 'y' instead of
'foo'
boxplot y --output=display # 'foo' mentioned in
title
end function
series foo = normal()
foo(foo, firm)
</hansl>
I see what you mean. That shouldn't be hard to fix, when I get a
chance.
Allin