cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Georgios_Tsim
Level III

Graph builder - different types of visualization at the same plot

How can I have only dots only for the RSF variable and then lines for the rest variable that represent the mean values and the prediction interval? When I select a column and I click on the different types of plots at the top ribbon it changes the plotting type for all variables

 

Georgios_Tsim_0-1780558026428.png

Graph builder JMP (16.2)

1 ACCEPTED SOLUTION

Accepted Solutions
Georgios_Tsim
Level III

Re: Graph builder - different types of visualization at the same plot

Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables(
		X( :BH ),
		Y( :RSF ),
		Y( :Upper 90% Indiv RSF, Position( 1 ) ),
		Y( :RSF Mean, Position( 1 ) ),
		Y( :Lower 90% Indiv RSF, Position( 1 ) )
	),
	Elements(
		Points( X, Y( 1 ), Legend( 18 ) ),
		Line( X, Y( 3 ), Legend( 19 ) ),
		Smoother( X, Y( 2 ), Y( 4 ), Legend( 20 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Add Graphics Script( 7, Description( "" ), Empty() )}
		)
	)
);

View solution in original post

1 REPLY 1
Georgios_Tsim
Level III

Re: Graph builder - different types of visualization at the same plot

Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables(
		X( :BH ),
		Y( :RSF ),
		Y( :Upper 90% Indiv RSF, Position( 1 ) ),
		Y( :RSF Mean, Position( 1 ) ),
		Y( :Lower 90% Indiv RSF, Position( 1 ) )
	),
	Elements(
		Points( X, Y( 1 ), Legend( 18 ) ),
		Line( X, Y( 3 ), Legend( 19 ) ),
		Smoother( X, Y( 2 ), Y( 4 ), Legend( 20 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Add Graphics Script( 7, Description( "" ), Empty() )}
		)
	)
);

Recommended Articles