<?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 How to produce Bar Charts with T-Bar? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65851#M3151</link>
    <description>I want to produce Bar Charts,My data are follows:&lt;BR /&gt;
v1 v2 v3&lt;BR /&gt;
1 1 1.10&lt;BR /&gt;
1 1 2.30&lt;BR /&gt;
1 2 4.50&lt;BR /&gt;
1 2 1.80&lt;BR /&gt;
2 3 0.80&lt;BR /&gt;
2 3 7.80&lt;BR /&gt;
2 3 1.10&lt;BR /&gt;
2 4 3.60&lt;BR /&gt;
2 4 2.70&lt;BR /&gt;
2 5 1.60&lt;BR /&gt;
2 5 2.30&lt;BR /&gt;
2 5 0.90&lt;BR /&gt;
3 6 9.50&lt;BR /&gt;
3 6 0.60&lt;BR /&gt;
3 7 6.40&lt;BR /&gt;
3 7 7.80&lt;BR /&gt;
3 7 2.80&lt;BR /&gt;
3 8 5.70&lt;BR /&gt;
3 8 3.60&lt;BR /&gt;
&lt;BR /&gt;
I want to make v1 with category axis,v2 with cluster,and v3 with statics,and standard deviation value is 1,and I want to show error bars(a T sign) on each bar graphics. How to do it with sas9.2?&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
    <pubDate>Fri, 21 Aug 2009 03:24:19 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-08-21T03:24:19Z</dc:date>
    <item>
      <title>How to produce Bar Charts with T-Bar?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65851#M3151</link>
      <description>I want to produce Bar Charts,My data are follows:&lt;BR /&gt;
v1 v2 v3&lt;BR /&gt;
1 1 1.10&lt;BR /&gt;
1 1 2.30&lt;BR /&gt;
1 2 4.50&lt;BR /&gt;
1 2 1.80&lt;BR /&gt;
2 3 0.80&lt;BR /&gt;
2 3 7.80&lt;BR /&gt;
2 3 1.10&lt;BR /&gt;
2 4 3.60&lt;BR /&gt;
2 4 2.70&lt;BR /&gt;
2 5 1.60&lt;BR /&gt;
2 5 2.30&lt;BR /&gt;
2 5 0.90&lt;BR /&gt;
3 6 9.50&lt;BR /&gt;
3 6 0.60&lt;BR /&gt;
3 7 6.40&lt;BR /&gt;
3 7 7.80&lt;BR /&gt;
3 7 2.80&lt;BR /&gt;
3 8 5.70&lt;BR /&gt;
3 8 3.60&lt;BR /&gt;
&lt;BR /&gt;
I want to make v1 with category axis,v2 with cluster,and v3 with statics,and standard deviation value is 1,and I want to show error bars(a T sign) on each bar graphics. How to do it with sas9.2?&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Fri, 21 Aug 2009 03:24:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65851#M3151</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-08-21T03:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to produce Bar Charts with T-Bar?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65852#M3152</link>
      <description>I do not know if there is an easy way developed recently, I have not done much graphics for a few years.   I used to do this with the annotate facility.  You just draw them in based on the data values.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.</description>
      <pubDate>Fri, 21 Aug 2009 19:39:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65852#M3152</guid>
      <dc:creator>Flip</dc:creator>
      <dc:date>2009-08-21T19:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to produce Bar Charts with T-Bar?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65853#M3153</link>
      <description>Assuming you have 9.2 phase 2, try these examples and see if either give you what you want.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data test;&lt;BR /&gt;
input v1 v2 v3;&lt;BR /&gt;
cards;&lt;BR /&gt;
1 1 1.10&lt;BR /&gt;
1 1 2.30&lt;BR /&gt;
1 2 4.50&lt;BR /&gt;
1 2 1.80&lt;BR /&gt;
2 3 0.80&lt;BR /&gt;
2 3 7.80&lt;BR /&gt;
2 3 1.10&lt;BR /&gt;
2 4 3.60&lt;BR /&gt;
2 4 2.70&lt;BR /&gt;
2 5 1.60&lt;BR /&gt;
2 5 2.30&lt;BR /&gt;
2 5 0.90&lt;BR /&gt;
3 6 9.50&lt;BR /&gt;
3 6 0.60&lt;BR /&gt;
3 7 6.40&lt;BR /&gt;
3 7 7.80&lt;BR /&gt;
3 7 2.80&lt;BR /&gt;
3 8 5.70&lt;BR /&gt;
3 8 3.60&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sgpanel data=test;&lt;BR /&gt;
panelby v2 / onepanel noborder layout=columnlattice novarname;&lt;BR /&gt;
vbar v1 / response=v3 stat=mean limitstat=stddev limits=upper;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sgpanel data=test;&lt;BR /&gt;
panelby v2 / onepanel noborder uniscale=row layout=columnlattice novarname;&lt;BR /&gt;
vbar v1 / response=v3 stat=mean limitstat=stddev limits=upper;&lt;BR /&gt;
run;</description>
      <pubDate>Thu, 27 Aug 2009 20:13:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-produce-Bar-Charts-with-T-Bar/m-p/65853#M3153</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2009-08-27T20:13:28Z</dc:date>
    </item>
  </channel>
</rss>

