<?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: How do I save the eigenvalues from PCA into dataset? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35178#M20758</link>
    <description>Thanks for your quick answer Dan, I found that, however I need to do it lots of times (as I have to do 12 PCAs) so I wanted to run it in JSL as a script, where the PCA is done (by consumer) and the eigenvalues exported each time...any ideas on that?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 01 Feb 2017 17:35:26 GMT</pubDate>
    <dc:creator>gemmahodgson</dc:creator>
    <dc:date>2017-02-01T17:35:26Z</dc:date>
    <item>
      <title>How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35173#M20753</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am using JMP Pro 13 doing PCA and although I can see all the output I need on the screen, I want to be able to extrct the eigenvalues and use them as weights for another anlaysis, so I need them in a dataset, but there doens't appear to be any option to get them out. The only thing I can save is the principal components...does anyone know how you can save the other parts of the output? Either via scripting or interactive is fine.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gemma&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 15:05:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35173#M20753</guid>
      <dc:creator>gemmahodgson</dc:creator>
      <dc:date>2017-02-01T15:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35176#M20756</link>
      <description>&lt;P&gt;Try right-clicking on the table and choose Make into Data Table.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 16:02:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35176#M20756</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2017-02-01T16:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35178#M20758</link>
      <description>Thanks for your quick answer Dan, I found that, however I need to do it lots of times (as I have to do 12 PCAs) so I wanted to run it in JSL as a script, where the PCA is done (by consumer) and the eigenvalues exported each time...any ideas on that?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:35:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35178#M20758</guid>
      <dc:creator>gemmahodgson</dc:creator>
      <dc:date>2017-02-01T17:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35180#M20759</link>
      <description>&lt;P&gt;Here is a simple example of a script creating the Eigenvalue data table&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/semiconductor capability.jmp");

pc=dt &amp;lt;&amp;lt; Principal Components(
	Y( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3 ),
	Estimation Method( "Default" ),
	"on Correlations",
	Eigenvalues( 1 ),
	SendToReport(
		Dispatch(
			{"Summary Plots"},
			"PCA Summary Plots",
			FrameBox,
			{Frame Size( 43, 40 )}
		),
		Dispatch(
			{"Summary Plots"},
			"PCA Summary Plots",
			FrameBox( 2 ),
			{Frame Size( 53, 40 )}
		)
	)
);
report(pc)["Eigenvalues"][1][1]&amp;lt;&amp;lt;make into data table;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Feb 2017 20:10:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35180#M20759</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-02-01T20:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35186#M20764</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Gemma,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I'm understanding your question correctly you want to save the table of&amp;nbsp;eigenvalues shown in the JMP PCA report for all the extracted components. If that's right, a simple way to do this is to right-click the table in the report and select "Make into Data Table."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Julian&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="MakeIntoDataTable.gif" style="width: 770px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/4978iA18174AF091241B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="MakeIntoDataTable.gif" alt="MakeIntoDataTable.gif" /&gt;&lt;/span&gt;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 23:15:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35186#M20764</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2017-02-01T23:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35187#M20765</link>
      <description>Oops, I see now that Jim already responded with a great method for handling this across many reports!</description>
      <pubDate>Wed, 01 Feb 2017 23:16:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35187#M20765</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2017-02-01T23:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35193#M20769</link>
      <description>That's great thank you so much - I will try it now! Can't believe all the v quick replies - I was expecting to wait weeks!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Feb 2017 10:17:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35193#M20769</guid>
      <dc:creator>gemmahodgson</dc:creator>
      <dc:date>2017-02-02T10:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I save the eigenvalues from PCA into dataset?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35211#M20779</link>
      <description />
      <pubDate>Thu, 02 Feb 2017 15:17:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-save-the-eigenvalues-from-PCA-into-dataset/m-p/35211#M20779</guid>
      <dc:creator>louv</dc:creator>
      <dc:date>2017-02-02T15:17:54Z</dc:date>
    </item>
  </channel>
</rss>

