<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: New graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/602827#M80619</link>
    <description>&lt;P&gt;You can make similar-looking graphs with Graph Builder without writing JSL. What aspects of the graph are important to you? (sizes, positions, colors, decorations, labels, statistics?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50269i5529AC3CE6A5CF73/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The script GraphBuilder saved can be reused.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Graph Builder(
    Size( 839, 427 ),
    Show Control Panel( 0 ),
    Y Group Edge( "Left" ),
    Title Fill Color( "Medium Light Gray" ),
    Title Frame Color( "Medium Light Gray" ),
    Level Fill Color( {217, 217, 217} ),
    Level Frame Color( "Medium Light Gray" ),
    Level Spacing Color( "Medium Light Gray" ),
    Variables( X( :height ), X( :weight ), Y( :sex ), Group Y( :age ) ),
    Elements(
        Position( 1, 1 ),
        Bar(
            X,
            Y,
            Legend( 23 ),
            Packed Placement( "Separate stack" ),
            Summary Statistic( "% of Total" ),
            Label( "Label by Value" )
        )
    ),
    Elements(
        Position( 2, 1 ),
        Box Plot( X, Y, Legend( 25 ), Width Proportion( 0.3 ) )
    ),
    SendToReport(
        Dispatch(
            {},
            "graph title",
            TextEditBox,
            {Set Text( "Big Class Information" )}
        ),
        Dispatch(
            {},
            "Y title",
            TextEditBox,
            {Text Color( 0 ), Rotate Text( "Left" ), Font Color( 0 ), Set Text( "" )
            }
        ),
        Dispatch( {}, "Graph Builder", FrameBox, {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 2 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 3 ), {Background Color( 68 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 4 ), {Background Color( 68 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 5 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 6 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 7 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 8 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 9 ), {Background Color( 35 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 10 ), {Background Color( 35 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 11 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 12 ), {Background Color( 67 )} )
    )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 18 Feb 2023 15:15:38 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2023-02-18T15:15:38Z</dc:date>
    <item>
      <title>New graph</title>
      <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/602799#M80617</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to reproduce the attached graph with JMP?&lt;BR /&gt;Personally, I don't have much programming skills, however, since the JMP graphics are very defined, it would be a nice graphic to include in scientific publications.&lt;BR /&gt;Thank you&lt;BR /&gt;Giuseppe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:34:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/New-graph/m-p/602799#M80617</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-06-08T16:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: New graph</title>
      <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/602827#M80619</link>
      <description>&lt;P&gt;You can make similar-looking graphs with Graph Builder without writing JSL. What aspects of the graph are important to you? (sizes, positions, colors, decorations, labels, statistics?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50269i5529AC3CE6A5CF73/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The script GraphBuilder saved can be reused.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Graph Builder(
    Size( 839, 427 ),
    Show Control Panel( 0 ),
    Y Group Edge( "Left" ),
    Title Fill Color( "Medium Light Gray" ),
    Title Frame Color( "Medium Light Gray" ),
    Level Fill Color( {217, 217, 217} ),
    Level Frame Color( "Medium Light Gray" ),
    Level Spacing Color( "Medium Light Gray" ),
    Variables( X( :height ), X( :weight ), Y( :sex ), Group Y( :age ) ),
    Elements(
        Position( 1, 1 ),
        Bar(
            X,
            Y,
            Legend( 23 ),
            Packed Placement( "Separate stack" ),
            Summary Statistic( "% of Total" ),
            Label( "Label by Value" )
        )
    ),
    Elements(
        Position( 2, 1 ),
        Box Plot( X, Y, Legend( 25 ), Width Proportion( 0.3 ) )
    ),
    SendToReport(
        Dispatch(
            {},
            "graph title",
            TextEditBox,
            {Set Text( "Big Class Information" )}
        ),
        Dispatch(
            {},
            "Y title",
            TextEditBox,
            {Text Color( 0 ), Rotate Text( "Left" ), Font Color( 0 ), Set Text( "" )
            }
        ),
        Dispatch( {}, "Graph Builder", FrameBox, {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 2 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 3 ), {Background Color( 68 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 4 ), {Background Color( 68 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 5 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 6 ), {Background Color( 36 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 7 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 8 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 9 ), {Background Color( 35 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 10 ), {Background Color( 35 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 11 ), {Background Color( 67 )} ),
        Dispatch( {}, "Graph Builder", FrameBox( 12 ), {Background Color( 67 )} )
    )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 Feb 2023 15:15:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/New-graph/m-p/602827#M80619</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2023-02-18T15:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: New graph</title>
      <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/603246#M80643</link>
      <description>&lt;P&gt;The risk difference plot is in JMP Clinical&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/downloads/JMPC170_documentation/Content/JMPCUserGuide/AERiskReport.htm?Highlight=risk" target="_blank"&gt;https://www.jmp.com/support/downloads/JMPC170_documentation/Content/JMPCUserGuide/AERiskReport.htm?Highlight=risk&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 21:04:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/New-graph/m-p/603246#M80643</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2023-02-20T21:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: New graph</title>
      <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/605684#M80799</link>
      <description>Thanks for the reply and above all for the effort. The graph that is shown, however, is not the same as the one I had proposed. In your graph there are box plots, while in the graph that I would have liked there are confidence intervals and risks. Your graph is interesting, but not usable for research purposes where relative risks or odds ratios are analysed, etc.. Giuseppe</description>
      <pubDate>Mon, 27 Feb 2023 08:16:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/New-graph/m-p/605684#M80799</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-02-27T08:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: New graph</title>
      <link>https://community.jmp.com/t5/Discussions/New-graph/m-p/605685#M80800</link>
      <description>&lt;P&gt;Thanks Byron_JMP,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not having JMP Clinical I never imagined that this possibility existed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 08:19:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/New-graph/m-p/605685#M80800</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-02-27T08:19:47Z</dc:date>
    </item>
  </channel>
</rss>

