<?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 Copy pasting means and std deviation table from a Oneway analysis. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Copy-pasting-means-and-std-deviation-table-from-a-Oneway/m-p/712901#M89631</link>
    <description>&lt;P&gt;Hello all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time posting here so I apologize if I miss anything. I wrote script which essentially creates a oneway analysis for user imported data. I was wondering if it was possible to extract (copy paste) the "Means and Std Deviations" table to a different table in JSL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OhThatArabGuy_1-1703880407651.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60127i4B2D68594D2AE9DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="OhThatArabGuy_1-1703880407651.png" alt="OhThatArabGuy_1-1703880407651.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Dec 2023 20:08:55 GMT</pubDate>
    <dc:creator>OhThatArabGuy</dc:creator>
    <dc:date>2023-12-29T20:08:55Z</dc:date>
    <item>
      <title>Copy pasting means and std deviation table from a Oneway analysis.</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-pasting-means-and-std-deviation-table-from-a-Oneway/m-p/712901#M89631</link>
      <description>&lt;P&gt;Hello all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time posting here so I apologize if I miss anything. I wrote script which essentially creates a oneway analysis for user imported data. I was wondering if it was possible to extract (copy paste) the "Means and Std Deviations" table to a different table in JSL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="OhThatArabGuy_1-1703880407651.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60127i4B2D68594D2AE9DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="OhThatArabGuy_1-1703880407651.png" alt="OhThatArabGuy_1-1703880407651.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 20:08:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-pasting-means-and-std-deviation-table-from-a-Oneway/m-p/712901#M89631</guid>
      <dc:creator>OhThatArabGuy</dc:creator>
      <dc:date>2023-12-29T20:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Copy pasting means and std deviation table from a Oneway analysis.</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-pasting-means-and-std-deviation-table-from-a-Oneway/m-p/712908#M89632</link>
      <description>&lt;P&gt;Here is an example that shows how to take the complete Means and Std table and create a new data table from it and also and example of how to take a specific column of the stat table and add it to the current data table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");

Oneway(
	Y( :height ),
	X( :sex ),
	Quantiles( 1 ),
	Means and Std Dev( 1 ),
	t Test( 1 ),
	Box Plots( 1 ),
	Mean Error Bars( 1 ),
	Std Dev Lines( 1 )
);

theReport = current report();

// Create it own new table
theReport["Means and Std Deviations", TableBox(1)] &amp;lt;&amp;lt; make into data table;

// and/or add the data to the current data table
dt &amp;lt;&amp;lt; new column( "Mean" );
theMeans = theReport["Means and Std Deviations", NumberColBox(2)] &amp;lt;&amp;lt; get;
dt:Mean &amp;lt;&amp;lt; set values( theMeans );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Dec 2023 21:31:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-pasting-means-and-std-deviation-table-from-a-Oneway/m-p/712908#M89632</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-12-29T21:31:43Z</dc:date>
    </item>
  </channel>
</rss>

