<?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: Question about SGPANEL in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446905#M15362</link>
    <description>&lt;P&gt;PROC SGPANEL DATA = d;&lt;BR /&gt;PANELBY Q1 / NOVARNAME SPACING = 5;&lt;BR /&gt;LOESS X = Q9 Y = Q15 / NOMARKERS CLM NOLEGCLM;&lt;BR /&gt;REG X = Q9 Y = Q15;&lt;BR /&gt;REFLINE 0 9 / LABEL = ('Strongly Agree' 'Strongly Disagree') TRANSPARENCY = 0.25;&lt;BR /&gt;FORMAT Q1 Q1Fmt.;&lt;BR /&gt;TITLE1 'Relationship between Stress from Workload and Stress Eating Response';&lt;BR /&gt;TITLE2 'For Michigan State University Graduate Students';&lt;BR /&gt;FOOTNOTE1 C=BLACK JUSTIFY=CENTER 'Scatter plot of Stress from Workload vs. Stress Eating Response by Sex';&lt;BR /&gt;FOOTNOTE2 C=BLACK JUSTIFY=CENTER 'EPI 852 Survey Data';&lt;BR /&gt;FOOTNOTE3 C=BLACK FONT=SCRIPT JUSTIFY=RIGHT 'MB BG KV RW';&lt;BR /&gt;AXIS1 LABEL=(FONT=SWISS COLOR=RED 'Q9') ORDER = (0 to 10 by 1);&lt;BR /&gt;AXIS2 LABEL=(FONT=SWISS COLOR=RED 'Q15') ORDER = (0 to 10 by 1);&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Mar 2018 18:32:59 GMT</pubDate>
    <dc:creator>georgeb7</dc:creator>
    <dc:date>2018-03-19T18:32:59Z</dc:date>
    <item>
      <title>Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446893#M15358</link>
      <description>&lt;P&gt;Is SGPANEL considered a SAS/GRAPH or ODS Graphics function?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 17:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446893#M15358</guid>
      <dc:creator>georgeb7</dc:creator>
      <dc:date>2018-03-19T17:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446895#M15359</link>
      <description>&lt;P&gt;It's in ODS Graphics. It's part of BASE SAS.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 17:56:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446895#M15359</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2018-03-19T17:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446896#M15360</link>
      <description>&lt;P&gt;If I have an SGPANEL, how can I convert to SGPLOT?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 17:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446896#M15360</guid>
      <dc:creator>georgeb7</dc:creator>
      <dc:date>2018-03-19T17:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446897#M15361</link>
      <description>&lt;P&gt;It depends on the plot request. Is your goal to produce single plots of each cell in the panel. If so, try just changing SGPANEL to SGPLOT, and changing the PANELBY to BY (removing any options after the "/"). You might still have other plots options that are not compatible. Can you post your procedure code?&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 18:00:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446897#M15361</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2018-03-19T18:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446905#M15362</link>
      <description>&lt;P&gt;PROC SGPANEL DATA = d;&lt;BR /&gt;PANELBY Q1 / NOVARNAME SPACING = 5;&lt;BR /&gt;LOESS X = Q9 Y = Q15 / NOMARKERS CLM NOLEGCLM;&lt;BR /&gt;REG X = Q9 Y = Q15;&lt;BR /&gt;REFLINE 0 9 / LABEL = ('Strongly Agree' 'Strongly Disagree') TRANSPARENCY = 0.25;&lt;BR /&gt;FORMAT Q1 Q1Fmt.;&lt;BR /&gt;TITLE1 'Relationship between Stress from Workload and Stress Eating Response';&lt;BR /&gt;TITLE2 'For Michigan State University Graduate Students';&lt;BR /&gt;FOOTNOTE1 C=BLACK JUSTIFY=CENTER 'Scatter plot of Stress from Workload vs. Stress Eating Response by Sex';&lt;BR /&gt;FOOTNOTE2 C=BLACK JUSTIFY=CENTER 'EPI 852 Survey Data';&lt;BR /&gt;FOOTNOTE3 C=BLACK FONT=SCRIPT JUSTIFY=RIGHT 'MB BG KV RW';&lt;BR /&gt;AXIS1 LABEL=(FONT=SWISS COLOR=RED 'Q9') ORDER = (0 to 10 by 1);&lt;BR /&gt;AXIS2 LABEL=(FONT=SWISS COLOR=RED 'Q15') ORDER = (0 to 10 by 1);&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 18:32:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446905#M15362</guid>
      <dc:creator>georgeb7</dc:creator>
      <dc:date>2018-03-19T18:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Question about SGPANEL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446906#M15363</link>
      <description>&lt;P&gt;If you want a plot for every cell, the following code should work for you. If you want to fit the entire data set, just remove the BY statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SGPLOT DATA = d;
BY Q1;
LOESS X = Q9 Y = Q15 / NOMARKERS CLM NOLEGCLM;
REG X = Q9 Y = Q15;
REFLINE 0 9 / LABEL = ('Strongly Agree' 'Strongly Disagree') TRANSPARENCY = 0.25;
FORMAT Q1 Q1Fmt.;
TITLE1 'Relationship between Stress from Workload and Stress Eating Response';
TITLE2 'For Michigan State University Graduate Students';
FOOTNOTE1 C=BLACK JUSTIFY=CENTER 'Scatter plot of Stress from Workload vs. Stress Eating Response by Sex';
FOOTNOTE2 C=BLACK JUSTIFY=CENTER 'EPI 852 Survey Data';
FOOTNOTE3 C=BLACK FONT=SCRIPT JUSTIFY=RIGHT 'MB BG KV RW';
AXIS1 LABEL=(FONT=SWISS COLOR=RED 'Q9') ORDER = (0 to 10 by 1);
AXIS2 LABEL=(FONT=SWISS COLOR=RED 'Q15') ORDER = (0 to 10 by 1);
RUN;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Mar 2018 18:37:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Question-about-SGPANEL/m-p/446906#M15363</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2018-03-19T18:37:56Z</dc:date>
    </item>
  </channel>
</rss>

