<?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: The TEST is not consistent or has redundant column. in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414798#M21777</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I run linear regressions for different groups and I want to test if the parameter is statistically significant from 1 rather than 0, so I add a "test" statement, such as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=work.mincer plots=none;&lt;BR /&gt;model CEp=CEIp;&lt;BR /&gt;test CEIp=1;&lt;BR /&gt;by EU28 sex;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variables EU28 and sex have 3 categories each. For some case, there is no problem, but in some others, I don't get the output for the test. I get this error message:&lt;/P&gt;
&lt;P&gt;ERROR: The TEST is not consistent or has redundant column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I find nothing in the documentation about this issue. What does that mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Nov 2017 10:57:32 GMT</pubDate>
    <dc:creator>Demographer</dc:creator>
    <dc:date>2017-11-20T10:57:32Z</dc:date>
    <item>
      <title>ERROR: The TEST is not consistent or has redundant column.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414798#M21777</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I run linear regressions for different groups and I want to test if the parameter is statistically significant from 1 rather than 0, so I add a "test" statement, such as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=work.mincer plots=none;&lt;BR /&gt;model CEp=CEIp;&lt;BR /&gt;test CEIp=1;&lt;BR /&gt;by EU28 sex;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variables EU28 and sex have 3 categories each. For some case, there is no problem, but in some others, I don't get the output for the test. I get this error message:&lt;/P&gt;
&lt;P&gt;ERROR: The TEST is not consistent or has redundant column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I find nothing in the documentation about this issue. What does that mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 10:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414798#M21777</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2017-11-20T10:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The TEST is not consistent or has redundant column.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414824#M21779</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is usually indicative of a scaling problem with your data.&amp;nbsp; When this happens the standard errors for some of your parameter estimates become very small and the chi-square test produced by the TEST statement is unreliable.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;I would try standardizing the data first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc stdize data=mincer out=new;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=work.new plots=none;&lt;BR /&gt;model CEp=CEIp;&lt;BR /&gt;test CEIp=1;&lt;BR /&gt;by EU28 sex;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 13:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414824#M21779</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-11-20T13:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The TEST is not consistent or has redundant column.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414856#M21781</link>
      <description>&lt;P&gt;It fixes the error message, but parameters are different and as so, I'm not really sure if the interpretation is the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These are Mincer-Zarnowitz regressions, that try to seek if there is a systematic and significant over/under-estimation between two sets of data (CEp and CEIp).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When the parameter is, for instance, 1.10 and statistically different from 1, it should mean that there is a systematic overestimate by 10%. When I use proc &lt;SPAN&gt;stdize on the dataset, I'm not sure that I can still interpret parameters this way.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 15:00:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414856#M21781</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2017-11-20T15:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The TEST is not consistent or has redundant column.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414869#M21782</link>
      <description>&lt;P&gt;Standardizing simply removes the units associted with the variables...not sure though how that would change the interpretation for your model.&lt;/P&gt;
&lt;P&gt;Either way the scale of the variables is causing the issue, so you may need to find a way to rescale the variable in a way that makes sense.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 15:35:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ERROR-The-TEST-is-not-consistent-or-has-redundant-column/m-p/414869#M21782</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-11-20T15:35:02Z</dc:date>
    </item>
  </channel>
</rss>

