<?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 do a decrease count in a result in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510293#M1917</link>
    <description>&lt;P&gt;Sup guys, I have this code and I want that result always have a a minus count, like this code, I have a temp valor and I want the value-273,15 but I don't know how to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename resp temp;&lt;BR /&gt;&lt;BR /&gt;/* Neat service from Open Notify project */&lt;BR /&gt;proc http&lt;BR /&gt;url="&lt;A href="http://api.openweathermap.org/data/2.5/weather?q=Curitiba,br&amp;amp;APPID=c1c9bc3307a38be77bdd9dacc4f5b435" target="_blank"&gt;http://api.openweathermap.org/data/2.5/weather?q=Curitiba,br&amp;amp;APPID=c1c9bc3307a38be77bdd9dacc4f5b435&lt;/A&gt;"&lt;BR /&gt;method= "GET"&lt;BR /&gt;out=resp;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;/* Assign a JSON library to the HTTP response */&lt;BR /&gt;libname space JSON fileref=resp;&lt;BR /&gt;&lt;BR /&gt;/* Print result, dropping automatic ordinal metadata */&lt;BR /&gt;title "Your temperature is here";&lt;BR /&gt;proc print data=space.main (drop=ordinal:); /* &lt;SPAN&gt;the "main" is the amount I want to decrease by 273.15 */&lt;/SPAN&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Sun, 04 Nov 2018 23:30:05 GMT</pubDate>
    <dc:creator>JVmano</dc:creator>
    <dc:date>2018-11-04T23:30:05Z</dc:date>
    <item>
      <title>How to do a decrease count in a result</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510293#M1917</link>
      <description>&lt;P&gt;Sup guys, I have this code and I want that result always have a a minus count, like this code, I have a temp valor and I want the value-273,15 but I don't know how to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename resp temp;&lt;BR /&gt;&lt;BR /&gt;/* Neat service from Open Notify project */&lt;BR /&gt;proc http&lt;BR /&gt;url="&lt;A href="http://api.openweathermap.org/data/2.5/weather?q=Curitiba,br&amp;amp;APPID=c1c9bc3307a38be77bdd9dacc4f5b435" target="_blank"&gt;http://api.openweathermap.org/data/2.5/weather?q=Curitiba,br&amp;amp;APPID=c1c9bc3307a38be77bdd9dacc4f5b435&lt;/A&gt;"&lt;BR /&gt;method= "GET"&lt;BR /&gt;out=resp;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;/* Assign a JSON library to the HTTP response */&lt;BR /&gt;libname space JSON fileref=resp;&lt;BR /&gt;&lt;BR /&gt;/* Print result, dropping automatic ordinal metadata */&lt;BR /&gt;title "Your temperature is here";&lt;BR /&gt;proc print data=space.main (drop=ordinal:); /* &lt;SPAN&gt;the "main" is the amount I want to decrease by 273.15 */&lt;/SPAN&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Nov 2018 23:30:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510293#M1917</guid>
      <dc:creator>JVmano</dc:creator>
      <dc:date>2018-11-04T23:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a decrease count in a result</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510294#M1918</link>
      <description>&lt;P&gt;Subtracting a value has to be done in a data step, or in SQL, or I suppose you could do it PROC IML as well. You can't do it in PROC PRINT.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Nov 2018 23:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510294#M1918</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-11-04T23:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a decrease count in a result</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510297#M1919</link>
      <description>PROC PRINT is a display procedure, it does not calculate variables or statistics except for totals.</description>
      <pubDate>Mon, 05 Nov 2018 00:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510297#M1919</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-05T00:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a decrease count in a result</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510308#M1920</link>
      <description>&lt;A href="https://video.sas.com/detail/videos/sas-analytics-u/video/4573023399001/creating-a-new-column-in-sas?autoStart=true&amp;amp;page=1" target="_blank"&gt;https://video.sas.com/detail/videos/sas-analytics-u/video/4573023399001/creating-a-new-column-in-sas?autoStart=true&amp;amp;page=1&lt;/A&gt;</description>
      <pubDate>Mon, 05 Nov 2018 02:55:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-do-a-decrease-count-in-a-result/m-p/510308#M1920</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-05T02:55:58Z</dc:date>
    </item>
  </channel>
</rss>

