<?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: I need help computing the volume of the following. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342055#M78379</link>
    <description>It worked, thank you!</description>
    <pubDate>Fri, 17 Mar 2017 17:17:41 GMT</pubDate>
    <dc:creator>pacruz</dc:creator>
    <dc:date>2017-03-17T17:17:41Z</dc:date>
    <item>
      <title>I need help computing the volume of the following.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342046#M78375</link>
      <description>&lt;P&gt;DATA one;&lt;BR /&gt;INPUT Type $ Circumference (inch) Height (ft) Crown (ft);&lt;BR /&gt;Volume=0.319 * height * 0.0000163 * circumference^2;&lt;BR /&gt;DATALINES;&lt;BR /&gt;oak, black 222 105 112&lt;BR /&gt;hemlock, eastern 149 138 52&lt;BR /&gt;ash, white 258 80 70&lt;BR /&gt;cherry, black 187 91 75&lt;BR /&gt;maple, red 210 99 74&lt;BR /&gt;elm, american 229 127 104&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC PRINT;&lt;BR /&gt;var Volume;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 16:49:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342046#M78375</guid>
      <dc:creator>pacruz</dc:creator>
      <dc:date>2017-03-17T16:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: I need help computing the volume of the following.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342047#M78376</link>
      <description>Proc print data=one;</description>
      <pubDate>Fri, 17 Mar 2017 16:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342047#M78376</guid>
      <dc:creator>gauthamk28</dc:creator>
      <dc:date>2017-03-17T16:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: I need help computing the volume of the following.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342054#M78378</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the code below. Bedefault the delimter for data items is a blank, so you also need to read the type.&lt;/P&gt;
&lt;P&gt;The exponentiation operator in SAS is **&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA one;

INPUT Type $ type2 $  Circumference Height Crown;
Volume = 0.319 * height * 0.0000163 * circumference**2;
DATALINES;
oak, black 222 105 112
hemlock, eastern 149 138 52
ash, white 258 80 70
cherry, black 187 91 75
maple, red 210 99 74
elm, american 229 127 104
;

PROC PRINT;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 17:13:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342054#M78378</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2017-03-17T17:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: I need help computing the volume of the following.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342055#M78379</link>
      <description>It worked, thank you!</description>
      <pubDate>Fri, 17 Mar 2017 17:17:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-computing-the-volume-of-the-following/m-p/342055#M78379</guid>
      <dc:creator>pacruz</dc:creator>
      <dc:date>2017-03-17T17:17:41Z</dc:date>
    </item>
  </channel>
</rss>

