cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

How to add dashboard function in jmp 12.0?

Hello everyone!

I just found out that I don't have the function "Create a new dashboard" in my jmp (version 12.0.0 jmp). So how can I use or how to add this to my jmp?

1 REPLY 1
ih
Super User (Alumni) ih
Super User (Alumni)

Re: How to add dashboard function in jmp 12.0?

I believe the new window function existed in JMP 12, you could try something like this:

 

Names default to here(1);

dt = Open("$Sample_data/iris.jmp");

win = New Window("Dashboard",
	H List Box(
		dt << Distribution(
			Continuous Distribution( Column( :Sepal length ) ),
			Continuous Distribution( Column( :Sepal width ) ),
			Continuous Distribution( Column( :Petal length ) ),
			Continuous Distribution( Column( :Petal width ) )
		),
		dt << Graph Builder(
			Size( 772, 661 ),
			Show Control Panel( 0 ),
			Variables( X( :Petal length ), Y( :Sepal length ) ),
			Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ) ) )
		)
	)
);

 

 

Recommended Articles