Hi all,
I am new to jmp. So please overlook syntax.
I am trying to plot a variability chart as below:
Variability Chart(
X( :age :height :gender ),
......
----------------
age, gender , height are data columns
I want to make arguments to X variable and store it separately.
Something like declaring first
Xarg_list=[:age :height :gender ]
and then using:
Variability Chart(
X=Xargs_list;
......
----------------
So If I want to add new column of weight or delete any column in list of arguments I just need to change Xargs_list
Xarg_list=[:age :height :gender :weight];
Any help with forming correct syntax is welcome.
Thanks