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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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