取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
选择语言 隐藏翻译栏
lala
Level IX

只有一列数据如何作图?能不加辅助列吗?

大家好!

我用以下脚本、增加了辅助列来进行只有一列数据作图。

 

是否有更好的方法?能不加辅助列吗?谢谢!

2022-01-06_121837.png

1 个已接受解答

已接受的解答
David_Burnham
Super User (Alumni)

Re: 只有一列数据如何作图?能不加辅助列吗?

 You can create a run chart.  You'll find it here: 

Analyze> Quality and Process> Control Chart> Run Chart

-Dave

在原帖中查看解决方案

8 条回复8
lala
Level IX

回复: 只有一列数据如何作图?能加辅助列吗?

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << delete columns( 1 :: N Col( dt ) - 1 );

New Column( "no" ); Column( "no" ) << Formula( Row() ); dt << run formulas; Column( "no" ) << deleteFormula; Graph Builder( Size( 534, 454 ), Show Control Panel( 0 ), Variables( X( :no ), Y( :weight ) ), Elements( Line( X, Y, Legend( 8 ) ) ) );
jthi
Super User

回复: 只有一列数据如何作图?能加辅助列吗?

Depends what you mean with a better way? If this is a common thing you do, you could create an addin/add script to jmps menus/toolbar which you could ran to do this. To create column you could use something like this (and if you want to create the graph builder always when script is ran, it can also be easily added):

Names Default To Here(1);

Local({dt},
	dt = Current Data Table();
	If(N Cols(dt) == 1,
		dt << New Column("no", Numeric, Ordinal, << Set Each Value(Row()))
	);
);

You can also add the column directly from New Columns:

jthi_0-1641461913221.png

Or create temporary column when using graph builder:

jthi_1-1641461963630.png

This column can be added to Data table if needed:

jthi_2-1641461996940.png

 

 

 

-Jarmo
lala
Level IX

回复: 只有一列数据如何作图?能加辅助列吗?

明白了、还是需要增加辅助列的。

 

感谢您的帮助!

jthi
Super User

回复: 只有一列数据如何作图?能加辅助列吗?

In some visualizations you might be able to manage with enabling Row Order option

jthi_0-1641471493151.png

 

-Jarmo
lala
Level IX

回复: 只有一列数据如何作图?能加辅助列吗?

我照着模仿、

只用一列、不能得到这样的图2022-01-06_205843.png

lala
Level IX

回复: 只有一列数据如何作图?能加辅助列吗?

JMP 15

David_Burnham
Super User (Alumni)

Re: 只有一列数据如何作图?能不加辅助列吗?

 You can create a run chart.  You'll find it here: 

Analyze> Quality and Process> Control Chart> Run Chart

-Dave
lala
Level IX

Re: 只有一列数据如何作图?能不加辅助列吗?

Thanks Experts!

 

2022-01-06_221521.png

推荐文章