<?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 Error in running %process for mediation analysis in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421135#M22156</link>
    <description>&lt;P&gt;ERROR: (execution) Numeric argument should be character.&lt;/P&gt;&lt;P&gt;operation : = at line 10312 column 1&lt;BR /&gt;operands : _TEM1001, *LIT1433&lt;/P&gt;&lt;P&gt;_TEM1001 1 row 1 col (character, size 3)&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;*LIT1433 1 row 1 col (numeric)&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;statement : IF at line 10312 column 1&lt;BR /&gt;ERROR: Row or column names must be character&lt;/P&gt;&lt;P&gt;statement : PRINT at line 10312 column 1&lt;BR /&gt;NOTE: Exiting IML.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;here's the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc iml;&lt;BR /&gt;%include "C:\Users\patrali.chakrabarty\Downloads\processv3\PROCESS\PROCESS v3.0 for SAS\process.sas"; run;&lt;BR /&gt;%process (data = study1_comp,y = PI,x = TT,m = IM,w = PCE,&lt;BR /&gt;z = R,cov = Often,plot = 1,moments = 1,model = 9,boot = 10000);run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be appreciated. Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 14 Dec 2017 10:29:11 GMT</pubDate>
    <dc:creator>patrali_c</dc:creator>
    <dc:date>2017-12-14T10:29:11Z</dc:date>
    <item>
      <title>Error in running %process for mediation analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421135#M22156</link>
      <description>&lt;P&gt;ERROR: (execution) Numeric argument should be character.&lt;/P&gt;&lt;P&gt;operation : = at line 10312 column 1&lt;BR /&gt;operands : _TEM1001, *LIT1433&lt;/P&gt;&lt;P&gt;_TEM1001 1 row 1 col (character, size 3)&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;*LIT1433 1 row 1 col (numeric)&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;statement : IF at line 10312 column 1&lt;BR /&gt;ERROR: Row or column names must be character&lt;/P&gt;&lt;P&gt;statement : PRINT at line 10312 column 1&lt;BR /&gt;NOTE: Exiting IML.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;here's the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc iml;&lt;BR /&gt;%include "C:\Users\patrali.chakrabarty\Downloads\processv3\PROCESS\PROCESS v3.0 for SAS\process.sas"; run;&lt;BR /&gt;%process (data = study1_comp,y = PI,x = TT,m = IM,w = PCE,&lt;BR /&gt;z = R,cov = Often,plot = 1,moments = 1,model = 9,boot = 10000);run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help will be appreciated. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 10:29:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421135#M22156</guid>
      <dc:creator>patrali_c</dc:creator>
      <dc:date>2017-12-14T10:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error in running %process for mediation analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421138#M22157</link>
      <description>&lt;P&gt;The error:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ERROR: (execution) Numeric argument should be character.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Tells you everything you need to know.&amp;nbsp; The code is expecting a character variable, you have provided a numeric variable.&amp;nbsp; Check your dataset to check the type of the variables matches the type prescribed by this %Process macro.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 10:40:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421138#M22157</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-12-14T10:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error in running %process for mediation analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421143#M22158</link>
      <description>&lt;P&gt;That looks like an IML error.&lt;/P&gt;
&lt;P&gt;Load the macro file into your EG or SAS Studio, and run the iml code "manually" by replacing macro variables with their values from the macro call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Always make sure that code runs successfully without macro action before making it dynamic.&lt;/P&gt;
&lt;P&gt;If that macro is not a creation of yours, it should include comments how to use it, or there should be a documentation accompanying it. If not, return to sender.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 11:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-running-process-for-mediation-analysis/m-p/421143#M22158</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-12-14T11:02:16Z</dc:date>
    </item>
  </channel>
</rss>

