취소
다음에 대한 결과 표시 
표시  만  | 다음에 대한 검색 
다음을 의미합니까? 

Discussions

Solve problems, and share tips and tricks with other JMP users.
언어 선택 변환 막대 숨기기
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 응답 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);


추천 글