<?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: PROC PLM: Can I change slope line color and font and remove header? in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606656#M13331</link>
    <description>&lt;P&gt;Here's some instructions and explanations on how to capture output that is shown. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Introduction to SGPLOT&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2018/10/08/getting-started-with-sgplot-part-13-style-attributes/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2018/10/08/getting-started-with-sgplot-part-13-style-attributes/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 23 Nov 2019 04:25:59 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-11-23T04:25:59Z</dc:date>
    <item>
      <title>PROC PLM: Can I change slope line color and font and remove header?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606626#M13329</link>
      <description>&lt;P&gt;I am new to SAS graphics. I use SAS Enterprise Guide 5.1.&lt;/P&gt;&lt;P&gt;I am able to produce a plot of an interaction effect using proc plm, but I would prefer if the line colors for the slopes and CI shaded areas were light gray, medium gray, and dark gray. I would also like to change the font and size of text to Arial 12 pt and remove the header of the graph (i.e., "Fit for Y 95% confidence Limits"). The graph that I would like to change is attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the syntax that I'm using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc mixed data=PAMMS_T covtest;&lt;BR /&gt;class enum;&lt;BR /&gt;model supramarginal = Age ZLogIGI Age*ZLogIGI APOE4 sex/ solution ddfm = KR influence (effect=enum iter=3) residual;&lt;BR /&gt;random int/ subject= enum type= un ;store out=IGI_supramarginal_all;&lt;BR /&gt;run;&lt;BR /&gt;ods rtf file="C:\Users\geennis\Documents\PAMMS\supra_plot3.rtf";&lt;BR /&gt;proc plm restore=IGI_supramarginal_all;&lt;BR /&gt;effectplot slicefit (x=Age sliceby=ZLogIGI=0 sliceby=ZLogIGI=1 sliceby=ZLogIGI=-1)/clm predlabel="Supramarginal gyrus FDG uptake (SUVR)" at (sex =1 APOE4 = 0);&lt;BR /&gt;run;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 00:29:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606626#M13329</guid>
      <dc:creator>geennis</dc:creator>
      <dc:date>2019-11-23T00:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PLM: Can I change slope line color and font and remove header?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606655#M13330</link>
      <description>Changing the default graphics is actually quite difficult.&lt;BR /&gt;&lt;BR /&gt;You can get the data and then graph it yourself using SGPLOT but that's not particularly trivial either. &lt;BR /&gt;&lt;BR /&gt;You'll need to determine how to get the output into a data set, then how to recreate the graph and then how to customize it. &lt;BR /&gt;&lt;BR /&gt;It's possible but there's not a quick solution to this issue.</description>
      <pubDate>Sat, 23 Nov 2019 04:19:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606655#M13330</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-23T04:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PLM: Can I change slope line color and font and remove header?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606656#M13331</link>
      <description>&lt;P&gt;Here's some instructions and explanations on how to capture output that is shown. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Introduction to SGPLOT&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2018/10/08/getting-started-with-sgplot-part-13-style-attributes/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2018/10/08/getting-started-with-sgplot-part-13-style-attributes/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 04:25:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606656#M13331</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-23T04:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PLM: Can I change slope line color and font and remove header?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606695#M13332</link>
      <description>&lt;P&gt;Thank you. It's good to know that the solution is not straightforward.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 18:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606695#M13332</guid>
      <dc:creator>geennis</dc:creator>
      <dc:date>2019-11-23T18:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PLM: Can I change slope line color and font and remove header?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606696#M13333</link>
      <description>&lt;P&gt;Thank you for providing these links.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 18:30:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/PROC-PLM-Can-I-change-slope-line-color-and-font-and-remove/m-p/606696#M13333</guid>
      <dc:creator>geennis</dc:creator>
      <dc:date>2019-11-23T18:30:16Z</dc:date>
    </item>
  </channel>
</rss>

