<?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: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343823#M11930</link>
    <description>I am seeing from your code another dataset also "illinois_psu". Please give me brief idea what exactly you are looking for also share another dataset aswell.&lt;BR /&gt;Thanks</description>
    <pubDate>Thu, 23 Mar 2017 19:07:22 GMT</pubDate>
    <dc:creator>lakshmi_74</dc:creator>
    <dc:date>2017-03-23T19:07:22Z</dc:date>
    <item>
      <title>Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343502#M11904</link>
      <description>&lt;P&gt;I'm using SAS 9.3 and trying to create a vertical bar chart with custom confidence intervals that includes the data label values for the bar charts but not the confidence intervals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use the DATALABEL option of VBARPARM, I also get the the confidence interval data labels which makes the chart very busy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define style barcolor;&lt;BR /&gt;parent=styles.sasweb;&lt;BR /&gt;style GraphData1 from GraphData1 / color= DAG;&lt;BR /&gt;style GraphData2 from GraphData2 / color= VIBG;&lt;BR /&gt;style GraphData3 from GraphData3 / color= LIOLGR;&lt;BR /&gt;class GraphFonts / 'GraphLabelFont'=("Arial", 10pt, bold)&lt;BR /&gt;'GraphValueFont'=("Arial", 10pt, bold)&lt;BR /&gt;'GraphTitleFont'=("Arial", 16pt, bold)&lt;BR /&gt;'GraphLabelFont' =("Arial", 14pt, bold)&lt;BR /&gt;'GraphDataFont' =("Arial", 10pt, bold) ;&lt;BR /&gt;class graphwalls / frameborder=off;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods html style=barcolor file='final.htm';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%macro sexid (var, text, text2);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;**Looking at data by other variables and year to understand trends in reporting of sexual identity**;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc surveyfreq data=illinois_psu varheader=label nomcar ;&lt;BR /&gt;stratum stratum2;&lt;BR /&gt;cluster psu;&lt;BR /&gt;weight weight;&lt;BR /&gt;tables &amp;amp;var.*sexid/ row chisq CL ;&lt;BR /&gt;ods output CrossTabs=&amp;amp;var._sexid;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=&amp;amp;var._sexid&lt;BR /&gt;noautolegend ;&lt;BR /&gt;format rowpercent 3.1;&lt;BR /&gt;vbarparm category=&amp;amp;var. response=rowpercent / group=sexid name="&amp;amp;var." barwidth=0.6 limitupper=RowUpperCL limitlower=RowLowerCL;&lt;BR /&gt;where sexid in (2,3,4) and &amp;amp;var. ne .;&lt;BR /&gt;xaxis display=(nolabel);&lt;BR /&gt;yaxis label='Percent' values=(1 2 3 4 5 6 7 8 9 10);&lt;BR /&gt;TITLE "Proportion of High School Students Identifying as &amp;amp;text. by &amp;amp;text2.", 2009-2015;&lt;BR /&gt;keylegend "&amp;amp;var." / noborder location=inside position=top;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;%sexid (race4,Gay/Lesbian Bisexual or Not Sure, Race);&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 20:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343502#M11904</guid>
      <dc:creator>LNavon</dc:creator>
      <dc:date>2017-03-22T20:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343589#M11916</link>
      <description>&lt;P&gt;Can you share sample data. So i can help you.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 03:29:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343589#M11916</guid>
      <dc:creator>lakshmi_74</dc:creator>
      <dc:date>2017-03-23T03:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343718#M11922</link>
      <description>&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data are frequency data that output from the proc survey freq procedure which also outputs 95% confidence intervals that account for the complex survey design of the data I'm using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output data set that is used for the graph looks something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;race4_sexid;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;race4&amp;nbsp;sexid rowpercent RowLowerCL RowUpperCL;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;datalines&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;1 1 91.8821&amp;nbsp;90.6684&amp;nbsp;93.0957&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;1 2&amp;nbsp;1.6792&amp;nbsp;1.2078&amp;nbsp;2.1507&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;1 3 3.7270 &amp;nbsp;2.9502&amp;nbsp;4.5038&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;1 4&amp;nbsp;2.7118&amp;nbsp;2.1308&amp;nbsp;3.2927&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;2 1&amp;nbsp;0.9015&amp;nbsp;85.7038&amp;nbsp;89.2629&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;2 2 2.3095&amp;nbsp;1.5431&amp;nbsp;3.0759&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;2 3&amp;nbsp;6.6199&amp;nbsp;5.0172&amp;nbsp;8.2227&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;2 4&amp;nbsp;3.5872&amp;nbsp;2.6824&amp;nbsp;4.4920;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 14:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343718#M11922</guid>
      <dc:creator>LNavon</dc:creator>
      <dc:date>2017-03-23T14:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343823#M11930</link>
      <description>I am seeing from your code another dataset also "illinois_psu". Please give me brief idea what exactly you are looking for also share another dataset aswell.&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 23 Mar 2017 19:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343823#M11930</guid>
      <dc:creator>lakshmi_74</dc:creator>
      <dc:date>2017-03-23T19:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343826#M11931</link>
      <description>&lt;P&gt;I only included that code so that it would be clear that I what I was trying to plot was the output of a surveyfreq procedure i.e., frequency data with associated custom confidence intervals, as I listed in reponse to your intial request to see what&amp;nbsp;data I was trying to graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not believe having those data will help with providing a solution to my question of whether there is a way to suppress the confidence interval labels from appearing on the graph when using the DATALABEL option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you agan for your willingess to help.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 19:15:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/343826#M11931</guid>
      <dc:creator>LNavon</dc:creator>
      <dc:date>2017-03-23T19:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress the Custom Confidence Interval data labels on SGPLOT VBARPARM graph?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/344104#M11942</link>
      <description>&lt;P&gt;Code and graph included below.&lt;/P&gt;
&lt;P&gt;SAS 9.3 does not support AxisTable. &amp;nbsp;So, we have to use SCATTER with MARKERCHAR overlay.&lt;/P&gt;
&lt;P&gt;The y position for char markers is set just above the RowUpperCL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data race4_sexid;&lt;BR /&gt;&amp;nbsp; input race4 sexid rowpercent RowLowerCL RowUpperCL;&lt;BR /&gt;&amp;nbsp; ylbl=RowUpperCL+2;&lt;BR /&gt;&amp;nbsp; datalines;&lt;BR /&gt;1 1 91.8821 90.6684 93.0957&lt;BR /&gt;1 2 1.6792 1.2078 2.1507&lt;BR /&gt;1 3 3.7270 2.9502 4.5038&lt;BR /&gt;1 4 2.7118 2.1308 3.2927&lt;BR /&gt;2 1 87.15 85.7038 89.2629&lt;BR /&gt;2 2 2.3095 1.5431 3.0759&lt;BR /&gt;2 3 6.6199 5.0172 8.2227&lt;BR /&gt;2 4 3.5872 2.6824 4.4920&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=race4_sexid noautolegend ;&lt;BR /&gt;&amp;nbsp; format rowpercent 3.1;&lt;BR /&gt;&amp;nbsp; vbarparm category=race4 response=rowpercent / group=sexid name="race4" &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; barwidth=0.6 limitupper=RowUpperCL limitlower=RowLowerCL;&lt;BR /&gt;&amp;nbsp; scatter x=race4 y=ylbl / markerchar=rowpercent group=sexid groupdisplay=cluster&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;markercharattrs=(color=black size=9pt);&lt;BR /&gt;&amp;nbsp; xaxis display=(nolabel);&lt;BR /&gt;&amp;nbsp; yaxis label='Percent' offsetmin=0;&lt;BR /&gt;&amp;nbsp; keylegend "race4" / noborder location=inside position=top;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/7943i70A6833525D983CF/image-size/medium?v=1.0&amp;amp;px=-1" border="0" alt="SGPlot4.png" title="SGPlot4.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 15:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Suppress-the-Custom-Confidence-Interval-data-labels-on-SGPLOT/m-p/344104#M11942</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2017-03-24T15:36:06Z</dc:date>
    </item>
  </channel>
</rss>

