<?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 ODS Graphics Not Showing in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877658#M43040</link>
    <description>&lt;PRE&gt;&lt;CODE class=""&gt;data Color;
   input Region Eyes $ Hair $ Count @@;
      label Eyes  ='Eye Color'
            Hair  ='Hair Color'
            Region='Geographic Region';
   datalines;
1 blue  fair   23  1 blue  red     7  1 blue  medium 24
1 blue  dark   11  1 green fair   19  1 green red     7
1 green medium 18  1 green dark   14  1 brown fair   34
1 brown red     5  1 brown medium 41  1 brown dark   40 
1 brown black   3  2 blue  fair   46  2 blue  red    21
2 blue  medium 44  2 blue  dark   40  2 blue  black   6
2 green fair   50  2 green red    31  2 green medium 37
2 green dark   23  2 brown fair   56  2 brown red    42
2 brown medium 53  2 brown dark   54  2 brown black  13
;

ods html style=statistical;
ods graphics on;

proc freq data=Color;
   tables Eyes Hair Eyes*Hair ;
   weight Count;
run;

ods graphics off;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The Code Above is not generating&amp;nbsp; any Graphics in SEG only tables. Please can anyone see what is wrong? The code was copied from the SAS website which shows examples of the charts produced by the same code, see here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/rnd/app/ODSGraphics/examples/freq.html" target="_blank"&gt;Frequency Bar Charts with PROC FREQ (sas.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Log File, shows no errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 The SAS System 09:59 Friday, May 26, 2023&lt;/P&gt;&lt;P&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Test Code';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Juriya Validated Farmers';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='C:\DataAnalysis\KOBOWEB\SEG Projects\Analyse NAAS Farm Data\Analyse_JURIYA_FarmData_01.egp';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='PRECISION5470';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='Analyse_JURIYA_FarmData_01.egp';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10&lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=PNG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 %macro HTML5AccessibleGraphSupported;&lt;BR /&gt;15 %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;&lt;BR /&gt;16 %mend;&lt;BR /&gt;17 FILENAME EGHTML TEMP;&lt;BR /&gt;18 ODS HTML5(ID=EGHTML) FILE=EGHTML&lt;BR /&gt;19 OPTIONS(BITMAP_MODE='INLINE')&lt;BR /&gt;20 %HTML5AccessibleGraphSupported&lt;BR /&gt;21 ENCODING='utf-8'&lt;BR /&gt;22 STYLE=HTMLBlue&lt;BR /&gt;23 NOGTITLE&lt;BR /&gt;24 NOGFOOTNOTE&lt;BR /&gt;25 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;26 ;&lt;BR /&gt;NOTE: Writing HTML5(EGHTML) Body file: EGHTML&lt;BR /&gt;27&lt;BR /&gt;28 data Color;&lt;BR /&gt;29 input Region Eyes $ Hair $ Count @@;&lt;BR /&gt;30 label Eyes ='Eye Color'&lt;BR /&gt;31 Hair ='Hair Color'&lt;BR /&gt;32 Region='Geographic Region';&lt;BR /&gt;33 datalines;&lt;/P&gt;&lt;P&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;BR /&gt;NOTE: The data set WORK.COLOR has 27 observations and 4 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;43 ;&lt;BR /&gt;44&lt;BR /&gt;45 ods html style=statistical;&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml12.htm&lt;BR /&gt;46 ods graphics on;&lt;BR /&gt;47&lt;BR /&gt;48 proc freq data=Color;&lt;BR /&gt;49 tables Eyes Hair Eyes*Hair ;&lt;BR /&gt;50 weight Count;&lt;BR /&gt;51 run;&lt;/P&gt;&lt;P&gt;NOTE: There were 27 observations read from the data set WORK.COLOR.&lt;BR /&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;real time 0.14 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;BR /&gt;&lt;BR /&gt;2 The SAS System 09:59 Friday, May 26, 2023&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;52&lt;BR /&gt;53 ods graphics off;&lt;BR /&gt;54 ods html close;&lt;BR /&gt;55&lt;BR /&gt;56 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;57 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;58 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;59 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;60 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;61 %LET _SASPROGRAMFILE=;&lt;BR /&gt;62 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;63&lt;BR /&gt;64 ;*';*";*/;quit;run;&lt;BR /&gt;65 ODS _ALL_ CLOSE;&lt;BR /&gt;66&lt;BR /&gt;67&lt;BR /&gt;68 QUIT; RUN;&lt;BR /&gt;69&lt;/P&gt;</description>
    <pubDate>Fri, 26 May 2023 09:34:10 GMT</pubDate>
    <dc:creator>baroche64</dc:creator>
    <dc:date>2023-05-26T09:34:10Z</dc:date>
    <item>
      <title>ODS Graphics Not Showing</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877658#M43040</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;data Color;
   input Region Eyes $ Hair $ Count @@;
      label Eyes  ='Eye Color'
            Hair  ='Hair Color'
            Region='Geographic Region';
   datalines;
1 blue  fair   23  1 blue  red     7  1 blue  medium 24
1 blue  dark   11  1 green fair   19  1 green red     7
1 green medium 18  1 green dark   14  1 brown fair   34
1 brown red     5  1 brown medium 41  1 brown dark   40 
1 brown black   3  2 blue  fair   46  2 blue  red    21
2 blue  medium 44  2 blue  dark   40  2 blue  black   6
2 green fair   50  2 green red    31  2 green medium 37
2 green dark   23  2 brown fair   56  2 brown red    42
2 brown medium 53  2 brown dark   54  2 brown black  13
;

ods html style=statistical;
ods graphics on;

proc freq data=Color;
   tables Eyes Hair Eyes*Hair ;
   weight Count;
run;

ods graphics off;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The Code Above is not generating&amp;nbsp; any Graphics in SEG only tables. Please can anyone see what is wrong? The code was copied from the SAS website which shows examples of the charts produced by the same code, see here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/rnd/app/ODSGraphics/examples/freq.html" target="_blank"&gt;Frequency Bar Charts with PROC FREQ (sas.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Log File, shows no errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 The SAS System 09:59 Friday, May 26, 2023&lt;/P&gt;&lt;P&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Test Code';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Juriya Validated Farmers';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='C:\DataAnalysis\KOBOWEB\SEG Projects\Analyse NAAS Farm Data\Analyse_JURIYA_FarmData_01.egp';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='PRECISION5470';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='Analyse_JURIYA_FarmData_01.egp';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10&lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=PNG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 %macro HTML5AccessibleGraphSupported;&lt;BR /&gt;15 %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;&lt;BR /&gt;16 %mend;&lt;BR /&gt;17 FILENAME EGHTML TEMP;&lt;BR /&gt;18 ODS HTML5(ID=EGHTML) FILE=EGHTML&lt;BR /&gt;19 OPTIONS(BITMAP_MODE='INLINE')&lt;BR /&gt;20 %HTML5AccessibleGraphSupported&lt;BR /&gt;21 ENCODING='utf-8'&lt;BR /&gt;22 STYLE=HTMLBlue&lt;BR /&gt;23 NOGTITLE&lt;BR /&gt;24 NOGFOOTNOTE&lt;BR /&gt;25 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;26 ;&lt;BR /&gt;NOTE: Writing HTML5(EGHTML) Body file: EGHTML&lt;BR /&gt;27&lt;BR /&gt;28 data Color;&lt;BR /&gt;29 input Region Eyes $ Hair $ Count @@;&lt;BR /&gt;30 label Eyes ='Eye Color'&lt;BR /&gt;31 Hair ='Hair Color'&lt;BR /&gt;32 Region='Geographic Region';&lt;BR /&gt;33 datalines;&lt;/P&gt;&lt;P&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;BR /&gt;NOTE: The data set WORK.COLOR has 27 observations and 4 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;43 ;&lt;BR /&gt;44&lt;BR /&gt;45 ods html style=statistical;&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml12.htm&lt;BR /&gt;46 ods graphics on;&lt;BR /&gt;47&lt;BR /&gt;48 proc freq data=Color;&lt;BR /&gt;49 tables Eyes Hair Eyes*Hair ;&lt;BR /&gt;50 weight Count;&lt;BR /&gt;51 run;&lt;/P&gt;&lt;P&gt;NOTE: There were 27 observations read from the data set WORK.COLOR.&lt;BR /&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;real time 0.14 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;BR /&gt;&lt;BR /&gt;2 The SAS System 09:59 Friday, May 26, 2023&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;52&lt;BR /&gt;53 ods graphics off;&lt;BR /&gt;54 ods html close;&lt;BR /&gt;55&lt;BR /&gt;56 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;57 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;58 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;59 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;60 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;61 %LET _SASPROGRAMFILE=;&lt;BR /&gt;62 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;63&lt;BR /&gt;64 ;*';*";*/;quit;run;&lt;BR /&gt;65 ODS _ALL_ CLOSE;&lt;BR /&gt;66&lt;BR /&gt;67&lt;BR /&gt;68 QUIT; RUN;&lt;BR /&gt;69&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 09:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877658#M43040</guid>
      <dc:creator>baroche64</dc:creator>
      <dc:date>2023-05-26T09:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics Not Showing</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877668#M43041</link>
      <description>&lt;P&gt;You need to ask PROC FREQ to produce plots. Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;   tables Eyes*Hair / plots=freqplot;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 May 2023 10:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877668#M43041</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-05-26T10:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics Not Showing</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877675#M43042</link>
      <description>proc freq data=Color ;&lt;BR /&gt;   tables Eyes Hair Eyes*Hair/ plots=all ;&lt;BR /&gt;   weight Count;&lt;BR /&gt;run;</description>
      <pubDate>Fri, 26 May 2023 11:42:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877675#M43042</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-05-26T11:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics Not Showing</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877686#M43043</link>
      <description>&lt;P&gt;Thanks so much, this works as well.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 13:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Graphics-Not-Showing/m-p/877686#M43043</guid>
      <dc:creator>baroche64</dc:creator>
      <dc:date>2023-05-26T13:00:46Z</dc:date>
    </item>
  </channel>
</rss>

