- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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!
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: How to change the number of decimal places?
Hi Ted
我并没有找到关于Caption Box的任何设置,但我之前有做过如下的尝试。希望可以帮助到你。
我会在图形中单机鼠标右键,然后选择“customize”。 然后再窗口中点击“+”并选择添加一个“Text”。如图。
然后通过Text命令中的参数设置我需要的文本的位置和内容,并通过char()显示我需要的统计结果。
如,我利用“Big Class”的数据源,针对身高求取平均值。如果你需要更多的数据显示格式,可以在里面嵌入Format()。
附代码如下:
dt = Current Data Table();
Text(
Center Justified,
{175, 72},
Char( Mean( dt << get as matrix( "height" ) ) )
);
心若止水
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: How to change the number of decimal places?
Created:
Apr 12, 2022 01:31 AM
| Last Modified: Apr 13, 2022 5:01 AM
(1579 views)
| Posted in reply to message from frank_wang 04-11-2022
Thanks frank_wang, but I got: "Graphics script reported errors in log".
So, I would like to have another way.