<?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: How to improve the graph in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164017#M42535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. However when I use the command SGPLOT I get a blank graph. Can you illustrate the commands you gave me with an example please. I don't understant every line of the command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I would like to know if you know how to calculate VaR (Value At Risk) on SAS and how to make copulas please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you in advance and happy new year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Dec 2014 22:29:27 GMT</pubDate>
    <dc:creator>Waliyya</dc:creator>
    <dc:date>2014-12-30T22:29:27Z</dc:date>
    <item>
      <title>How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164015#M42533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a graph to represent the evolution of the Coca Cola stock. I have tried doing it (see the picture in attachment) with the command below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot Skalli.base_union ;&lt;/P&gt;&lt;P&gt;symbol1 interpol=join value=none color=orange ;&lt;/P&gt;&lt;P&gt;plot Coca_cola*Date ;&lt;/P&gt;&lt;P&gt;Title "Evolution de l'action Coca cola" ;&lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;Quit ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However in my graph I don't have the value on the y-axis (you will see a long black thing instead of the values of the stock)&lt;/P&gt;&lt;P&gt;How do I do to have the values on the y-axis ? I have the comments below in my journal :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;WARNING: The gauche vertical axis labeled Yahoo could not be fit as specified. The axis values will overwrite.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;WARNING: The number of minor tick marks requested, 0, will result in marks drawn less than a pixel wide. Minor&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tick mark request will be ignored.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you in advance.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11694i04897A25C9ADC076/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Capture.PNG" title="Capture.PNG" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Dec 2014 16:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164015#M42533</guid>
      <dc:creator>Waliyya</dc:creator>
      <dc:date>2014-12-28T16:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164016#M42534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Generally speaking, sometimes the SG procedures make better assumptions about axis labeling. See this paper and the stock example there that shows the use of ODS GRAPHICS PROC SGPLOT.&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from: &lt;A href="http://www2.sas.com/proceedings/forum2008/255-2008.pdf"&gt;http://www2.sas.com/proceedings/forum2008/255-2008.pdf&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc sgplot data=sashelp.stocks;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;yaxis grid;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;series x=date y=close / group=stock;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc sgpanel data=sashelp.stocks;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;panelby stock / columns=1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;rowaxis grid;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;series x=date y=close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Dec 2014 18:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164016#M42534</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-12-28T18:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164017#M42535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. However when I use the command SGPLOT I get a blank graph. Can you illustrate the commands you gave me with an example please. I don't understant every line of the command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I would like to know if you know how to calculate VaR (Value At Risk) on SAS and how to make copulas please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you in advance and happy new year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2014 22:29:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164017#M42535</guid>
      <dc:creator>Waliyya</dc:creator>
      <dc:date>2014-12-30T22:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164018#M42536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with ODS Graphics On, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still don't get a graph generated, contact SAS Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS GRAPHICS ON;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;proc sgplot data=sashelp.stocks;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;yaxis grid;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;series x=date y=close / group=stock;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2014 22:31:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164018#M42536</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-12-30T22:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164019#M42537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;ODS GRAPHICS &lt;/SPAN&gt;/ width=xxx height=xxx ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 09:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164019#M42537</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-12-31T09:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve the graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164020#M42538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example using gplot to show how the price and volume of a stock changed over time...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.robslink.com/SAS/democd25/stock.htm" title="http://www.robslink.com/SAS/democd25/stock.htm"&gt;http://www.robslink.com/SAS/democd25/stock.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.robslink.com/SAS/democd25/stock_info.htm" title="http://www.robslink.com/SAS/democd25/stock_info.htm"&gt;http://www.robslink.com/SAS/democd25/stock_info.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 16:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-improve-the-graph/m-p/164020#M42538</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2015-01-20T16:58:25Z</dc:date>
    </item>
  </channel>
</rss>

