Hi,
i created a biv chart with legend "age", now i want to use the same graph with a different legend.
how can i do it?
this is what i try and the error i get.
prof=Bivariate(
Y( :high),
X( :weight),
by(:country),
SendToReport(
Dispatch( {}, "Bivar Plot", FrameBox, {Frame Size( 550, 450 ),
Row Legend(
:age,
Color( 1 ),
Color Theme( "JMP Default" ),
Marker( 1 ),
Marker Theme( "Alphanumeric" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 ))
} )
)
);
Report( prof )[Frame Box(1)] << Row Legend( “sex”, color(1), marker(1));
Send Expects Scriptable Object{731} in access or evaluation of 'Send' , Report( prof )[Frame Box( 1 )] << /*###*/Row Legend(
"sex",
color( 1 ),
Marker( 1 )
) /*###*/
In the following script, error marked by /*###*/
Report( prof )[Frame Box( 1 )] << /*###*/Row Legend(
"sex",
color( 1 ),
Marker( 1 )
) /*###*/
{}
Thanks, Adam