- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Creating Buuble Plot
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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 )
)
)
)
);