cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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 ) ) )
		)
	)
);