<?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: customizing the P-chart in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927290#M46137</link>
    <description>&lt;P&gt;When I submit&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc setinit; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get&lt;/P&gt;
&lt;PRE&gt;---SAS/GRAPH
  14JUL2024 (CPU A)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I submit&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get&lt;/P&gt;
&lt;PRE&gt;For SAS/GRAPH ...
   Custom version information: 9.4_M8&lt;/PRE&gt;
&lt;P&gt;M8 = Maintenance Release 8 (another maintenance release will do as well of course). M6 or above is preferred though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need to see something similar in order to be able to turn ods graphics ... off .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2024 09:53:27 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2024-05-07T09:53:27Z</dc:date>
    <item>
      <title>customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927091#M46096</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with the following code, the chart displays a label " p-chart for yes_answer1" at the top, under the main chart title.&lt;/P&gt;&lt;P&gt;I have two questions about that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How to remove that, i.e "p-chart for yes_answer1" ?&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;How can I modify the chart so that the main title " P-chart of Patient Counseling by Quarter" appears at the top of the chart instead of "p-chart for yes_answer1"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;title "P-chart of Patient Counseling by Quarter";&lt;BR /&gt;proc shewhart data=tmp2;&lt;BR /&gt;pchart yes_answer1*quarter/ markers&amp;nbsp; subgroupn = total_count1&amp;nbsp;&lt;BR /&gt;nohlabel ;&lt;BR /&gt;LABEL yes_answer1 ="Proportion of pts counselled"; /*this would be for y axis and no issue with this*/&lt;BR /&gt;run; title;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2024 13:53:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927091#M46096</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2024-05-05T13:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927093#M46098</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Start with&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;and use regular TITLE statement.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When using ODS Graphics with PROC SHEWHART &lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;(the default)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;, you will not be able to use a regular TITLE statement to add a title to the graph. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;However, you can use the ODSTITLE option on the PCHART statement, such as:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;nbsp; &amp;nbsp;pchart &amp;amp;v * _YEAR_MONTH / subgroupn = population
&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ODSTITLE='My New Shewhart Title'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2024 14:23:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927093#M46098</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-05-05T14:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927121#M46104</link>
      <description>&lt;P&gt;With the first approach (&lt;STRONG&gt;ods graphics off;&lt;/STRONG&gt; ), I will get this warning:&lt;/P&gt;&lt;P&gt;“WARNING: Traditional graphics are not available because either SAS/GRAPH is not licensed for your system, or the license has expired.”&lt;/P&gt;&lt;P&gt;So, I don’t have access to that.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 02:20:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927121#M46104</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2024-05-06T02:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927141#M46111</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;What SAS version are you using? Is it SAS 9.4 or SAS Viya?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Submit&amp;nbsp;&lt;/P&gt;
&lt;PRE class="sas"&gt;&lt;SPAN&gt;%put&lt;/SPAN&gt; &amp;amp;=SYSVLONG4;&lt;/PRE&gt;
&lt;P&gt;to find out (see LOG-screen for result).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To see the expiration dates for your SAS modules, you can submit:&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;proc setinit; run;&amp;nbsp; /*SAS 9.4*/&amp;nbsp; ... or&lt;/LI&gt;
&lt;LI&gt;cas; proc cas; getLicensedProductInfo; quit; /*SAS Viya*/&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;When you cannot turn ODS GRAPHICS ... OFF ,&lt;/P&gt;
&lt;P&gt;you can still use the ODSTITLE= option behind the forward slash on a pchart (p-chart) statement to get what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 09:50:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927141#M46111</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-05-06T09:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927269#M46135</link>
      <description>&lt;P&gt;My SAS is 9.4 and I have a valid license, I can use&amp;nbsp;the ODSTITLE= option behind the forward slash on a chart (p-chart)&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was just wondering why I cannot turn ODS GRAPHICS ... OFF. Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 03:46:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927269#M46135</guid>
      <dc:creator>bhr-q</dc:creator>
      <dc:date>2024-05-07T03:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: customizing the P-chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927290#M46137</link>
      <description>&lt;P&gt;When I submit&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc setinit; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get&lt;/P&gt;
&lt;PRE&gt;---SAS/GRAPH
  14JUL2024 (CPU A)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I submit&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get&lt;/P&gt;
&lt;PRE&gt;For SAS/GRAPH ...
   Custom version information: 9.4_M8&lt;/PRE&gt;
&lt;P&gt;M8 = Maintenance Release 8 (another maintenance release will do as well of course). M6 or above is preferred though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need to see something similar in order to be able to turn ods graphics ... off .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 09:53:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/customizing-the-P-chart/m-p/927290#M46137</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-05-07T09:53:27Z</dc:date>
    </item>
  </channel>
</rss>

