- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
GraphBuilder Challenge
A Jmp graph with different Overlay categories - with a trick it's possible to create it:
on the left: weight split by # doors
on the right: weight split by year.
Besides the trick, how can I use Overlay to create the graph?
dt = Open( "$SAMPLE_DATA/Cars.jmp" );
dt << New Column( "Count_Make", Formula( Col Number( 1, :Make ) ));
dt << Graph Builder(
Variables( X( :Make ), X( :Make ), Y( :Wt ), Overlay( :Year, :Doors ) ),
Elements( Position( 1, 1 ), Box Plot( X, Y,Overlay( 2 ) ) ),
Elements( Position( 2, 1 ), Box Plot( X, Y,Overlay( 1 ) ) ),
Local Data Filter(
Add Filter( columns( :Count_Make ), Where( :Count_Make >= 25 ) )
)
)
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: GraphBuilder Challenge
Is it necessary to use Overlay (if you need coloring, color supports multiple columns but I would most likely just rely on X-axis having both categories visible)
Graph Builder(
Size(1024, 632),
Show Control Panel(0),
Include Missing Categories(1),
Variables(X(:Make), X(:Doors, Position(1)), X(:Make), X(:Year, Position(2)), Y(:Wt), Color(:Doors), Color(:Year)),
Elements(Position(1, 1), Box Plot(X(1), X(2), Y, Color(1), Legend(8))),
Elements(Position(2, 1), Box Plot(X(1), X(2), Y, Color(2), Legend(3))),
Local Data Filter(Add Filter(columns(:Count_Make), Where(:Count_Make >= 25.81))),
SendToReport(
Dispatch({}, "Make", ScaleBox, {Label Row(1, Show Major Labels(0)), Label Row(2, Show Major Grid(1))}),
Dispatch({}, "Make", ScaleBox(2), {Label Row(1, Show Major Labels(0)), Label Row(2, Show Major Grid(1))})
)
)
or without color
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: GraphBuilder Challenge
Created:
Mar 4, 2024 11:32 AM
| Last Modified: Mar 9, 2025 3:23 AM
(1118 views)
| Posted in reply to message from jthi 03-04-2024
nice trick
and this one?
on the left: cases split by region
on the right: cases split by year
once Overlay by multiple columns is available, it will be:
dt = Open( "$SAMPLE_DATA/Seasonal Flu.jmp" );
dt << Graph Builder(
Transform Column( "Year", Formula( Year( :Date ) ) ),
Transform Column( "Day of Year", Formula( Day Of Year( :Date ) ) ),
Variables(
X( :Day of Year ),
X( :Day of Year ),
Y( :Flu Cases ),
Overlay( :Year, :Region )
),
Elements(
Position( 1, 1 ),
Smoother( X, Y, Overlay( 2 ))
),
Elements( Position( 2, 1 ), Smoother( X, Y, Overlay( 1 )))
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: GraphBuilder Challenge
any idea?