- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Graph builder syntax JMP15 vs 14
OK so I have this snippet of code that behaves very differently in JMP14 vs JMP15. The JMP 14 picture is the one I want it to look like. Why is it different in JMP15??
JMP 15 output - bad - axes are flipped, data is missing, etc.
JMP 15 - no good!!
JMP14 output - this is what I expect.
JMP 14 - yes, please
Chart(
Y( :calc_st_dr, :calc_st_dr Prediction Formula ),
Horizontal( 1 ),
Category Axis << {Axis Name( "Rows" )},
Label by Value,
Show Labels,
Bar Chart( 1 ),
SendToReport(
Dispatch(
{},
"Chart",
OutlineBox,
{Set Title( "calc_st_dr Prediction Formula" )}
)
)
);
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Graph builder syntax JMP15 vs 14
JMP 15 took a transition step away from some of the Legacy graph, into a new world where Graph Builder generates all of the graphs. You can change your JMP 15 Chart back to using the legacy form of the Chart Platform, by going to
File=>Preferences=>Platforms=>Chart
and unchecking the "Use Graph Builder"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Graph builder syntax JMP15 vs 14
JMP 15 took a transition step away from some of the Legacy graph, into a new world where Graph Builder generates all of the graphs. You can change your JMP 15 Chart back to using the legacy form of the Chart Platform, by going to
File=>Preferences=>Platforms=>Chart
and unchecking the "Use Graph Builder"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Graph builder syntax JMP15 vs 14
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Graph builder syntax JMP15 vs 14
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Graph builder syntax JMP15 vs 14
As @txnelson, the legacy Chart platform is deprecated will go away in a future release.
JMP is trying to interpret your Chart() JSL to give you the same kind of graph using Graph Builder but it clearly missed the mark here. @XanGregg can look at this and see if we can do a better conversion to Graph Builder() with the Chart() syntax you were using.
In the meantime, I think you can make the graph you're looking for in Graph Builder.
- Drag your categorical variable (Rows in your example) to the Y axis.
- Drag your two columns to be plotted as bars (calc_st_dr and calc_st_dr Prediction Formula) to the X axis.
- Change to a bar chart by clicking on the bar chart element in the elements bar.
- On the left side, in the Bar options, turn on the label by value.
You should end up with a graph that looks like this (with Big Class):