<?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: Change the font size for vertical axis in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724870#M225080</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please share your proc univariate program and the input dataset if that's possible so I can look into a solution.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Mar 2021 14:48:02 GMT</pubDate>
    <dc:creator>Athenkosi</dc:creator>
    <dc:date>2021-03-09T14:48:02Z</dc:date>
    <item>
      <title>Change the font size for vertical axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724612#M224971</link>
      <description>&lt;P&gt;I am using proc univariate to produce the histogram plot and I am trying to reduce the size for both horizontal and vertical axis values and the size for the tile for each class (highlight in yellow) I try to define htext in goptions statement but looks like it does not work&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tampham92_2-1615231078747.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/55676i74EE44E24B4B1DD2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tampham92_2-1615231078747.png" alt="tampham92_2-1615231078747.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 19:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724612#M224971</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2021-03-08T19:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change the font size for vertical axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724870#M225080</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please share your proc univariate program and the input dataset if that's possible so I can look into a solution.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 14:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724870#M225080</guid>
      <dc:creator>Athenkosi</dc:creator>
      <dc:date>2021-03-09T14:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change the font size for vertical axis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724988#M225121</link>
      <description>&lt;P&gt;My Input dataset is relative large to attached here. Below is my proc univariate. The data is organized like an example below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics / height=1000px width=700px;&lt;BR /&gt;GOPTIONS htext=1 cells;&lt;BR /&gt;SYMBOL v=SQUARE c=BLUE h=1 cells;&lt;BR /&gt;PATTERN v=SOLID;&lt;BR /&gt;TITLE;&lt;BR /&gt;TITLE1 "Distribution analysis of: Rate";&lt;/P&gt;&lt;P&gt;proc univariate data=test;&lt;BR /&gt;where type in ('Fed_Funds');&lt;BR /&gt;class scenario;&lt;BR /&gt;var Rate; /* computes descriptive statisitcs */&lt;BR /&gt;histogram Rate / endpoints= -6 to 15 by 0.5 nrows=5 normal (color=red)&lt;BR /&gt;&lt;BR /&gt;CFRAME=CXEAEAEA CAXES=BLACK WAXIS=1 CBARLINE=BLACK CFILL=BLUE PFILL=SOLID&lt;BR /&gt;;&lt;BR /&gt;INSET&lt;BR /&gt;MEAN&lt;BR /&gt;STD&lt;BR /&gt;SKEWNESS&lt;BR /&gt;KURTOSIS&lt;BR /&gt;MAX&lt;BR /&gt;MIN&lt;BR /&gt;Q1&lt;BR /&gt;MEDIAN&lt;BR /&gt;Q3 / POSITION=NE&lt;BR /&gt;CTEXT=BLUE&lt;BR /&gt;CFILL=CXD3D3D3&lt;BR /&gt;CFRAME=BLACK&lt;BR /&gt;CHEADER=BLACK&lt;BR /&gt;HEIGHT=1.5&lt;BR /&gt;format=10.2&lt;BR /&gt;;&lt;BR /&gt;ods select histogram; /* display on the histograms */&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;scenario&lt;/TD&gt;&lt;TD&gt;type&lt;/TD&gt;&lt;TD&gt;path&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Rate&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-200bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2/28/2021&lt;/TD&gt;&lt;TD&gt;0.26&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-200bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3/31/2021&lt;/TD&gt;&lt;TD&gt;0.23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-200bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;4/30/2021&lt;/TD&gt;&lt;TD&gt;0.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-50bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2/28/2021&lt;/TD&gt;&lt;TD&gt;0.6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-50bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3/31/2021&lt;/TD&gt;&lt;TD&gt;0.75&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LB_-50bps&lt;/TD&gt;&lt;TD&gt;Fed_Funds&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;4/30/2021&lt;/TD&gt;&lt;TD&gt;0.8&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 09 Mar 2021 21:33:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-the-font-size-for-vertical-axis/m-p/724988#M225121</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2021-03-09T21:33:37Z</dc:date>
    </item>
  </channel>
</rss>

