<?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 Output ‘PearsonCorr’ was not created in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910518#M45189</link>
    <description>&lt;DIV class=""&gt;I have this simple snippet in SAS9,&lt;/DIV&gt;&lt;PRE class=""&gt;&lt;CODE&gt;ods select PearsonCorr;&lt;BR /&gt;ods output PearsonCorr=RA_RF_PearsonCorr;&lt;BR /&gt;        proc corr data=RA_COST_&amp;amp;ra_condition._all rank pearson;
            var &amp;amp;response_cost.;
            with &amp;amp;ra_rf_st_flag_vars.;
        run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.RA_RF_PEARSONCORR has 12 observations and 4 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.RA_RF_PEARSONCORR increased size by 100.00 percent.&lt;BR /&gt;Compressed is 2 pages; un-compressed would require 1 pages.&lt;BR /&gt;&lt;EM&gt;WARNING: Output ‘PearsonCorr’ was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate *&lt;BR /&gt;*&amp;#12; procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used.&lt;/EM&gt;&lt;BR /&gt;NOTE: PROCEDURE CORR used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;user cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could not find anything wrong with it. Also, strangely the same snippet is running fine in SAS Viya4. How to block it from happening in SAS9?&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jan 2024 19:51:44 GMT</pubDate>
    <dc:creator>jason4sas</dc:creator>
    <dc:date>2024-01-04T19:51:44Z</dc:date>
    <item>
      <title>Output ‘PearsonCorr’ was not created</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910518#M45189</link>
      <description>&lt;DIV class=""&gt;I have this simple snippet in SAS9,&lt;/DIV&gt;&lt;PRE class=""&gt;&lt;CODE&gt;ods select PearsonCorr;&lt;BR /&gt;ods output PearsonCorr=RA_RF_PearsonCorr;&lt;BR /&gt;        proc corr data=RA_COST_&amp;amp;ra_condition._all rank pearson;
            var &amp;amp;response_cost.;
            with &amp;amp;ra_rf_st_flag_vars.;
        run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.RA_RF_PEARSONCORR has 12 observations and 4 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.RA_RF_PEARSONCORR increased size by 100.00 percent.&lt;BR /&gt;Compressed is 2 pages; un-compressed would require 1 pages.&lt;BR /&gt;&lt;EM&gt;WARNING: Output ‘PearsonCorr’ was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate *&lt;BR /&gt;*&amp;#12; procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used.&lt;/EM&gt;&lt;BR /&gt;NOTE: PROCEDURE CORR used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;user cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could not find anything wrong with it. Also, strangely the same snippet is running fine in SAS Viya4. How to block it from happening in SAS9?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910518#M45189</guid>
      <dc:creator>jason4sas</dc:creator>
      <dc:date>2024-01-04T19:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Output ‘PearsonCorr’ was not created</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910524#M45190</link>
      <description>&lt;P&gt;Replace all of the macro variables with the actual text. Run the procedure, show us the entire log for running the procedure, the code and all the messages. I suggest removing the ODS SELECT to debug code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The data set was created with the output. That is what writes this:&lt;/P&gt;
&lt;PRE&gt;NOTE: The data set WORK.RA_RF_PEARSONCORR has 12 observations and 4 variables.&lt;/PRE&gt;
&lt;P&gt;So I am a bit confused about the notes shown, which is why I request a complete run that we can read.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 20:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910524#M45190</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-01-04T20:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Output ‘PearsonCorr’ was not created</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910525#M45191</link>
      <description>&lt;P&gt;I am guessing that perhaps you have no output destinations open and so there is nothing for ODS OUTPUT to work with. What happens if you put this command before ODS SELECT?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html;&lt;/CODE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But agreeing with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;if that doesn't solve the problem here, and in all future problems, we need the entire LOG without macro variables, and sample data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 20:24:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-PearsonCorr-was-not-created/m-p/910525#M45191</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-01-04T20:24:45Z</dc:date>
    </item>
  </channel>
</rss>

