<?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 How to print the CI of pearson/spearman correlation coefficient in a SAS dataset? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512474#M32486</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on proc corr and I need to save the output in SAS dataset under WORK library, however the only printed variables are:&lt;/P&gt;&lt;P&gt;MEAN&lt;/P&gt;&lt;P&gt;STD&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;&lt;P&gt;CORR&lt;/P&gt;&lt;P&gt;CORR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please advise?&lt;/P&gt;</description>
    <pubDate>Tue, 13 Nov 2018 09:12:10 GMT</pubDate>
    <dc:creator>HS2</dc:creator>
    <dc:date>2018-11-13T09:12:10Z</dc:date>
    <item>
      <title>How to print the CI of pearson/spearman correlation coefficient in a SAS dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512474#M32486</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on proc corr and I need to save the output in SAS dataset under WORK library, however the only printed variables are:&lt;/P&gt;&lt;P&gt;MEAN&lt;/P&gt;&lt;P&gt;STD&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;&lt;P&gt;CORR&lt;/P&gt;&lt;P&gt;CORR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please advise?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 09:12:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512474#M32486</guid>
      <dc:creator>HS2</dc:creator>
      <dc:date>2018-11-13T09:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the CI of pearson/spearman correlation coefficient in a SAS dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512476#M32487</link>
      <description>&lt;P&gt;Apparently the FISHER option produces CI's:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_corr_sect031.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_corr_sect031.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 09:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512476#M32487</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-13T09:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the CI of pearson/spearman correlation coefficient in a SAS dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512479#M32488</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But actually I want to save this CI under SAS library dataset, below the attached screenshot of the ONLY variables/outputs printed in a dataset under WORK library.&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>Tue, 13 Nov 2018 09:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512479#M32488</guid>
      <dc:creator>HS2</dc:creator>
      <dc:date>2018-11-13T09:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the CI of pearson/spearman correlation coefficient in a SAS dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512485#M32489</link>
      <description>&lt;P&gt;Before the code run:&lt;/P&gt;
&lt;PRE&gt;ods trace on;&lt;/PRE&gt;
&lt;P&gt;This will show in the listing all the objects which are created.&amp;nbsp; You can then re-run the code and save the various output models with:&lt;/P&gt;
&lt;PRE&gt;ods output &amp;lt;object&amp;gt;=&amp;lt;dataset&amp;gt;;&lt;/PRE&gt;
&lt;P&gt;Per:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 09:43:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512485#M32489</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-13T09:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the CI of pearson/spearman correlation coefficient in a SAS dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512500#M32490</link>
      <description>&lt;P&gt;Thank you!!&lt;/P&gt;&lt;P&gt;It worked &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 10:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-print-the-CI-of-pearson-spearman-correlation-coefficient/m-p/512500#M32490</guid>
      <dc:creator>HS2</dc:creator>
      <dc:date>2018-11-13T10:12:11Z</dc:date>
    </item>
  </channel>
</rss>

