<?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: Ods Graphics Interaction Plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Ods-Graphics-Interaction-Plot/m-p/207500#M267203</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;the interaction plot produced by default when you have a two-way analysis of variance model, with just two &lt;/SPAN&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/statug_glm_sect011.htm" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; text-decoration: underline; color: #000066;"&gt;CLASS&lt;/A&gt;&lt;SPAN style="color: #000000; font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; variables&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think your model meets the default requirements. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Mar 2015 02:03:52 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-03-23T02:03:52Z</dc:date>
    <item>
      <title>Ods Graphics Interaction Plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ods-Graphics-Interaction-Plot/m-p/207499#M267202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone:&lt;/P&gt;&lt;P&gt; I understand that when using Proc GLM in 9.3, you can use ods graphics on to create a default interaction graph.&lt;/P&gt;&lt;P&gt; I am using the following simple code to run an interaction between gender and BMI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;graphics&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;on&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;proc &lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;GLM&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;=work.BMI;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;class &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;FEMALE CIT_RACE MARSTAT EDUCATS WORKING; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;title&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New'; font-size: 10pt;"&gt;'Model 4: OLR Prediciting Positive Mental Health'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;title2&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Courier New'; font-size: 10pt;"&gt;'Interatcion BMI*FEMALE'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;model &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;POSMEN =&amp;nbsp; BMI FEMALE H001 CIT_RACE MARSTAT LOGINC EDUCATS WORKING CHILDREN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;BMI*FEMALE / &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New'; font-size: 10pt;"&gt;SOLUTION&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG style="line-height: 107%; color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;STRONG style="line-height: 107%; color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;QUIT&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;graphics&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;off&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; line-height: 107%; font-family: 'Courier New'; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;when I run this I get all the standard output in ODS format (set to a browser) but I do not get a graph. Any assistance greatly appreciated. Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Mar 2015 22:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ods-Graphics-Interaction-Plot/m-p/207499#M267202</guid>
      <dc:creator>SASuser11466</dc:creator>
      <dc:date>2015-03-22T22:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Ods Graphics Interaction Plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ods-Graphics-Interaction-Plot/m-p/207500#M267203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;the interaction plot produced by default when you have a two-way analysis of variance model, with just two &lt;/SPAN&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/statug_glm_sect011.htm" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; text-decoration: underline; color: #000066;"&gt;CLASS&lt;/A&gt;&lt;SPAN style="color: #000000; font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; variables&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think your model meets the default requirements. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2015 02:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ods-Graphics-Interaction-Plot/m-p/207500#M267203</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-23T02:03:52Z</dc:date>
    </item>
  </channel>
</rss>

