cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
yavuz
Level I

Creating Buuble Plot

Does anyone please tell me why I can not find Bubble Plot? I am taking the online course "Statistical Thinking for Industrial Problem Solving, presented by JMP" and for some reason, it does not look like the same according to instructions. If anyone knows why I can not find it, please write it for me. 

 

Best

2 REPLIES 2
Thierry_S
Super User

Re: Creating Buuble Plot

Hi,
You should find it under the Graph Menu, second item (at least in JMP 14.1). If you are using a more recent version, it might have been relocated.
Let us know if you still cannot find this feature. If not, providing the version of JMP you are using, the platform (PC Windows or MAC), and a screenshot of your JMP menu bar.
Best,
TS
Thierry R. Sornasse
Georg
Level VII

Re: Creating Buuble Plot

I also do not always remember where to find a certain platform.

When searching for it, I usually look in the following places:

Help -> sample data

Help -> scripting index

Help -> statistics index

or simply in

View -> JMP Starter (under Graph I see Bubble Plot, JMP15 Pro Win10).

In most cases simply typing "bubble" gives the hint.

Also in the reference (JMP Documentation Library) you can find everything.

In the Menu, I see bubble plot under Graph-> bubble.

 

The following script (from scripting index) opens bubble plot of big class.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Platform example",
	H List Box(
		Platform(
			dt,
			Bubble Plot(
				X( :weight ),
				Y( :height ),
				Sizes( :age ),
				Title Position( 0, 0 )
			)
		),
		Platform(
			dt,
			Bubble Plot(
				X( :weight ),
				Y( :age ),
				Sizes( :height ),
				Title Position( 0, 0 )
			)
		)
	)
);

 

Georg