キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
言語を選択 翻訳バーを非表示
ih
Super User (Alumni) ih
Super User (Alumni)

Max entry length in Enhanced Log

In the enhanced log introduced in JMP 16 the max length of some things written to the log is limited.  Is there a way to override or change this?  For example, run the last line of the script below with the text log and the entire display tree is returned. Turn on the enhanced log and it is truncated.

 

I feel like I'm missing something simple here...

 

Names default to here(1);

dt = Open("$Sample_data/big class.jmp");

gb = Graph Builder(
	Size( 528, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ), Overlay( :age ) ),
	Elements( Bar( X, Y, Legend( 9 ) ) )
);

gb << get xml;
1 件の受理された解決策

受理された解決策
ih
Super User (Alumni) ih
Super User (Alumni)

Re: Max entry length in Enhanced Log

It turns out you can right click on the result in the enhanced log and then save script to a new script window (or the clipboard) and see it there.

元の投稿で解決策を見る

3件の返信3
txnelson
Super User

Re: Max entry length in Enhanced Log

I have not seen a way to lengthen the print length, however, the desired xml code can be moved into a variable, and then saved to a text file and opened with notepad.  Not the answer you want, but it might help you out.

xyz = gb << get xml;
save text file("$TEMP\myxml.txt",xyz)
Jim
ih
Super User (Alumni) ih
Super User (Alumni)

Re: Max entry length in Enhanced Log

Thanks @txnelson , I should have pointed out that you can also write that to the clipboard and paste it in a script window, which is my current work around, but I'm still holding out hope that there is some straight forward solution here to just show it in the log.

 

set clipboard( gb << get xml )  

 

ih
Super User (Alumni) ih
Super User (Alumni)

Re: Max entry length in Enhanced Log

It turns out you can right click on the result in the enhanced log and then save script to a new script window (or the clipboard) and see it there.

おすすめの記事