<?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 to increase length of variable names in ParameterEstimate ods output in proc genmod? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794043#M254568</link>
    <description>&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/973.html" target="_self"&gt;This&lt;/A&gt; probably provides a better explanation than I can. I know other PROCs have things like PARMLABEL and what not.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Feb 2022 15:32:58 GMT</pubDate>
    <dc:creator>maguiremq</dc:creator>
    <dc:date>2022-02-02T15:32:58Z</dc:date>
    <item>
      <title>How to increase length of variable names in ParameterEstimate ods output in proc genmod?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794036#M254567</link>
      <description>&lt;P&gt;For example, after running the following code I see that the variable "very_long_variable_name" gets cut off to "very_long_variable_n" in the Parameter column of the ParameterEstimates ods output datset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually this isn't an issue, except in my current project I have several long variable names I'd like to retain. I've also noticed other SAS procedures such as proc means or proc reg don't truncate variable names in the ods output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input y very_long_variable_name;
cards;
10 17
20 41
30 59
;
run;

ods trace on;
proc genmod data=test;
	model y = very_long_variable_name;
	ods output ParameterEstimates=reg_output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794036#M254567</guid>
      <dc:creator>RobertWF1</dc:creator>
      <dc:date>2022-02-02T15:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase length of variable names in ParameterEstimate ods output in proc genmod?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794043#M254568</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/973.html" target="_self"&gt;This&lt;/A&gt; probably provides a better explanation than I can. I know other PROCs have things like PARMLABEL and what not.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794043#M254568</guid>
      <dc:creator>maguiremq</dc:creator>
      <dc:date>2022-02-02T15:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase length of variable names in ParameterEstimate ods output in proc genmod?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794048#M254570</link>
      <description>Thanks Michael - this is helpful although looks like it applies to name literals.&lt;BR /&gt;&lt;BR /&gt;I'm trying something along the lines of:&lt;BR /&gt;&lt;BR /&gt;ods trace on;&lt;BR /&gt;proc genmod data=test;&lt;BR /&gt;	model y = very_long_variable_name;&lt;BR /&gt;	ods output ParameterEstimates=reg_output (length Parameter $ 32);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;But so far this isn't working.</description>
      <pubDate>Wed, 02 Feb 2022 15:45:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794048#M254570</guid>
      <dc:creator>RobertWF1</dc:creator>
      <dc:date>2022-02-02T15:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase length of variable names in ParameterEstimate ods output in proc genmod?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794050#M254571</link>
      <description>&lt;P&gt;Use the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_genmod_syntax01.htm#statug.genmod.genmodnamelenopt" target="_self"&gt;NAMELEN=&lt;/A&gt; option.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:55:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794050#M254571</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-02-02T15:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase length of variable names in ParameterEstimate ods output in proc genmod?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794055#M254574</link>
      <description>Bingo that did it! Thank you!</description>
      <pubDate>Wed, 02 Feb 2022 16:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-increase-length-of-variable-names-in-ParameterEstimate/m-p/794055#M254574</guid>
      <dc:creator>RobertWF1</dc:creator>
      <dc:date>2022-02-02T16:13:21Z</dc:date>
    </item>
  </channel>
</rss>

