cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Ted
Ted
Level IV

How to change the number of decimal places?

Where can I change the number of decimal places in Graph Builder (when the mean and SE were calculated automatically). I think it's around here somewhere: File->Preferences->Platforms->Graph Buider->?
Thank you in advance for your help!

Ted_0-1649715296895.png

 

2 REPLIES 2
frank_wang
Level IV

回复: How to change the number of decimal places?

Hi Ted

我并没有找到关于Caption Box的任何设置,但我之前有做过如下的尝试。希望可以帮助到你。

我会在图形中单机鼠标右键,然后选择“customize”。 然后再窗口中点击“+”并选择添加一个“Text”。如图。

然后通过Text命令中的参数设置我需要的文本的位置和内容,并通过char()显示我需要的统计结果。

如,我利用“Big Class”的数据源,针对身高求取平均值。如果你需要更多的数据显示格式,可以在里面嵌入Format()。

frank_wang_0-1649722926977.png

附代码如下:

dt = Current Data Table();
Text(
	Center Justified,
	{175, 72},
	Char( Mean( dt << get as matrix( "height" ) ) )
);

 

心若止水
Ted
Ted
Level IV

回复: How to change the number of decimal places?

Thanks frank_wang, but I got: "Graphics script reported errors in log".
So, I would like to have another way.

Recommended Articles