cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

How to change the number of decimal places?

Ted
Ted
Level IV

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.