cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
saitcopuroglu
Level IV

Categorical: Consumer Research: Unable to reproduce by copying the source script of a table

Till now I was copying the "source" script of the created table to glue them in one single script to automate the whole report (hence no script writing skill from the scratch)

Now I use Categorical »» Multiple Delimited »» Save Tables »» Save transposed frequencies but there is nor "source" menu to copy How to reproduce the whole steps to automate the report?

8798_2015-05-16_21-30-37.png

1 REPLY 1
ian_jmp
Level X

Re: Categorical: Consumer Research: Unable to reproduce by copying the source script of a table

You can do this kind of thing:

NamesDefaultToHere(1);

dt1 = Open("$SAMPLE_DATA/Consumer Preferences.jmp");

cat = dt1 << Categorical(

  Grouping Option( Each Individually ),

  X( :Age Group ),

  Responses( :I am working on my career )

  );

dt2 = cat << SaveTransposedFrequencies;

Wait(2);

Report(cat) << CloseWindow;

Close(dt1, NoSave);