<?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: Gardner-Altman Graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495494#M73405</link>
    <description>&lt;P&gt;How is this question different from your previous Discussion question?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Box-plot-dot-plot-half-violin-plot/m-p/488784#M73236" target="_blank" rel="noopener"&gt;Box-plot + dot plot + half violin plot&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are looking for the specific Gardner-Altman Graph, then it is available through the JMP/R capability in JMP.&amp;nbsp; Look in the Scripting Index under Extending JMP.&lt;/P&gt;</description>
    <pubDate>Mon, 30 May 2022 15:38:03 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2022-05-30T15:38:03Z</dc:date>
    <item>
      <title>Gardner-Altman Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495393#M73401</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;would anyone of you know how to make the graph as in object?&lt;BR /&gt;On the internet I searched and found that it can be done with R (I attach photos), but it is a graph that could be improved, for example by adding a box-plot and a half-violin plot that would give more information in addition to the dot plot.&lt;/P&gt;
&lt;P&gt;The result is an excellent inferential tool.&lt;BR /&gt;Thanks you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Giuseppe&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Schermata 2022-05-30 alle 14.34.13.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42792i1885DB2D247BCCFE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Schermata 2022-05-30 alle 14.34.13.png" alt="Schermata 2022-05-30 alle 14.34.13.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:24:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495393#M73401</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-06-11T11:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Gardner-Altman Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495494#M73405</link>
      <description>&lt;P&gt;How is this question different from your previous Discussion question?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Box-plot-dot-plot-half-violin-plot/m-p/488784#M73236" target="_blank" rel="noopener"&gt;Box-plot + dot plot + half violin plot&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are looking for the specific Gardner-Altman Graph, then it is available through the JMP/R capability in JMP.&amp;nbsp; Look in the Scripting Index under Extending JMP.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 15:38:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495494#M73405</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-05-30T15:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Gardner-Altman Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495621#M73409</link>
      <description>&lt;P&gt;Dear Txnelson,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;since I don't like the Gardner-Altman graph obtained with R I would have liked to have made it with JMP which has more attractive graphics.&lt;/P&gt;
&lt;P&gt;Then the graph with the points alone is not very informative; while with a box-plot and a half-violin plot the information is greater. I would say that in part the previous post is similar to this post, only the inferential part linked to Gardner-Altman would be missing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attaching the program R:&lt;/P&gt;
&lt;PRE&gt;install.packages("magrittr")
library(dabestr)

pr = read.xls("...directory of the DB", sheet=...)
bootstrap &amp;lt;- dabest(pr,
                   group,
                    variable,
                  idx = c("group1", "group2"),
                   paired = FALSE)
bootstrap_diff &amp;lt;- mean_diff(bootstrap)
plot(bootstrap_diff)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This program creates the graphic of the photo, to which it would be interesting to add the box-plot and the half-violin plot.&lt;/P&gt;
&lt;P&gt;In Scripting Index under Extending JMP I did not find this plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Giuseppe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 20:04:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495621#M73409</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2022-05-30T20:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Gardner-Altman Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495647#M73411</link>
      <description>&lt;P&gt;I would not expect to see your Gardner-Alman Chart in the JMP R extension documentation.&amp;nbsp; &amp;nbsp; The documentation describes the JMP R interface, and is not intended as an R code repository.&amp;nbsp; My guess is that you will not get an individual to create the chart you want and that you will need to start down the path of writing your own code to create the chart.&amp;nbsp; I also think you need to add your request to the JMP Wish List, so the chart(s) will be evalueated for future addition into JMP.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 20:51:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495647#M73411</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-05-30T20:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Gardner-Altman Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495820#M73414</link>
      <description>&lt;P&gt;Dear Txnelson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will follow your precious advice.&lt;BR /&gt;These graphs are a valuable tool for statistical inference and being able to make them with JMP would be points more for this software and its users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 08:29:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Gardner-Altman-Graph/m-p/495820#M73414</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2022-05-31T08:29:46Z</dc:date>
    </item>
  </channel>
</rss>

