Hi
In a script I wrote, I'm using a panel box showing two X-axis options which are long strings.
Is there an efficient way to change the display name for more convenience?
Code below is an example.
X_list hold all string representing column names I wish to present to the X axis.
Then, using panelbox to show user options.
Finally, plotting bivariate of user's choice.
I asked for help regarding X axis label, but it is best to get tips for y-axis labels too.
Thanks!
x_list = {"item1","item2"};
panelbox("x-axis", xRadio = radio box(x_list,updatePlot()));
Bivariate( Y( y_list[yRadio<<get] ),
X( x_list[xRadio<<get] ), ...)