<?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: Symbol Adjustment in Proc Reg plots in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467545#M21034</link>
    <description>&lt;P&gt;Are you using the HTML output? If so, changing your style will modify the colours.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS HTML style = journal;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can put that at the top of your program and check the results. There’s also JOURNAL2/3 which are slightly different.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37344"&gt;@DeannaGregory&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Greetings SAS Community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I know the answer to this question, but I am sincerely hoping I am wrong. I am creating plots for my ridge traces and variance inflation factors using Proc Reg. However, the output needs to be in grayscale for printing. Therefore, I need to change the symbols on the lines associated with the different variables. Is this possible? If so, how do I do it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: I am using SAS 9.4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using a SAS sample dataset. Here is my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Example of Multicollinearity Findings */&lt;BR /&gt;libname health "C:\Program Files\SASHome\SASEnterpriseGuide\7.1\Sample\Data";&lt;/P&gt;
&lt;P&gt;data health;&lt;BR /&gt;set health.lipid;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Assess Pairwise Correlations of Continuous Variables */&lt;BR /&gt;proc corr data=health;&lt;BR /&gt;var age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;title 'Health Predictors - Examination of Correlation Matrix';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=health;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height / vif tol collin;&lt;BR /&gt;title 'Health Predictors - Multicollinearity Investigation of VIF and Tol';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Ridge Regression Example */&lt;BR /&gt;proc reg data=health outvif plots(only)=ridge(unpack VIFaxis=log)&lt;BR /&gt;outest=rrhealth ridge=0 to 0.10 by .002;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;plot / ridgeplot nomodel nostat;&lt;BR /&gt;title 'Health - Ridge Regression Calculation';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help/guidance is sincerely appreciated!!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jun 2018 23:59:28 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-06-04T23:59:28Z</dc:date>
    <item>
      <title>Symbol Adjustment in Proc Reg plots</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467543#M21033</link>
      <description>&lt;P&gt;Greetings SAS Community!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I know the answer to this question, but I am sincerely hoping I am wrong. I am creating plots for my ridge traces and variance inflation factors using Proc Reg. However, the output needs to be in grayscale for printing. Therefore, I need to change the symbols on the lines associated with the different variables. Is this possible? If so, how do I do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: I am using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using a SAS sample dataset. Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Example of Multicollinearity Findings */&lt;BR /&gt;libname health "C:\Program Files\SASHome\SASEnterpriseGuide\7.1\Sample\Data";&lt;/P&gt;&lt;P&gt;data health;&lt;BR /&gt;set health.lipid;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Assess Pairwise Correlations of Continuous Variables */&lt;BR /&gt;proc corr data=health;&lt;BR /&gt;var age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;title 'Health Predictors - Examination of Correlation Matrix';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc reg data=health;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height / vif tol collin;&lt;BR /&gt;title 'Health Predictors - Multicollinearity Investigation of VIF and Tol';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Ridge Regression Example */&lt;BR /&gt;proc reg data=health outvif plots(only)=ridge(unpack VIFaxis=log)&lt;BR /&gt;outest=rrhealth ridge=0 to 0.10 by .002;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;plot / ridgeplot nomodel nostat;&lt;BR /&gt;title 'Health - Ridge Regression Calculation';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help/guidance is sincerely appreciated!!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jun 2018 23:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467543#M21033</guid>
      <dc:creator>DeannaGregory</dc:creator>
      <dc:date>2018-06-04T23:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Adjustment in Proc Reg plots</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467545#M21034</link>
      <description>&lt;P&gt;Are you using the HTML output? If so, changing your style will modify the colours.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS HTML style = journal;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can put that at the top of your program and check the results. There’s also JOURNAL2/3 which are slightly different.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37344"&gt;@DeannaGregory&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Greetings SAS Community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I know the answer to this question, but I am sincerely hoping I am wrong. I am creating plots for my ridge traces and variance inflation factors using Proc Reg. However, the output needs to be in grayscale for printing. Therefore, I need to change the symbols on the lines associated with the different variables. Is this possible? If so, how do I do it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: I am using SAS 9.4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using a SAS sample dataset. Here is my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Example of Multicollinearity Findings */&lt;BR /&gt;libname health "C:\Program Files\SASHome\SASEnterpriseGuide\7.1\Sample\Data";&lt;/P&gt;
&lt;P&gt;data health;&lt;BR /&gt;set health.lipid;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Assess Pairwise Correlations of Continuous Variables */&lt;BR /&gt;proc corr data=health;&lt;BR /&gt;var age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;title 'Health Predictors - Examination of Correlation Matrix';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc reg data=health;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height / vif tol collin;&lt;BR /&gt;title 'Health Predictors - Multicollinearity Investigation of VIF and Tol';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Ridge Regression Example */&lt;BR /&gt;proc reg data=health outvif plots(only)=ridge(unpack VIFaxis=log)&lt;BR /&gt;outest=rrhealth ridge=0 to 0.10 by .002;&lt;BR /&gt;model cholesterolloss = age weight cholesterol triglycerides hdl ldl height;&lt;BR /&gt;plot / ridgeplot nomodel nostat;&lt;BR /&gt;title 'Health - Ridge Regression Calculation';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help/guidance is sincerely appreciated!!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jun 2018 23:59:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467545#M21034</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-04T23:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Adjustment in Proc Reg plots</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467547#M21035</link>
      <description>&lt;P&gt;*forehead smack* YES, beautiful. That is exactly what I needed. I feel silly. Thank you!!!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 01:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Symbol-Adjustment-in-Proc-Reg-plots/m-p/467547#M21035</guid>
      <dc:creator>DeannaGregory</dc:creator>
      <dc:date>2018-06-05T01:06:47Z</dc:date>
    </item>
  </channel>
</rss>

