<?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: Need help with fitting data with an existing varaible in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678767#M32601</link>
    <description>&lt;P&gt;"Functions" is somewhat vague. Can you be specific?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;And I also wanted to test if these functions fit our data.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, please be specific about what you mean by "test if these functions fit our data".&lt;/P&gt;</description>
    <pubDate>Sun, 23 Aug 2020 19:22:16 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-08-23T19:22:16Z</dc:date>
    <item>
      <title>Need help with fitting data with an existing varaible</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678766#M32600</link>
      <description>&lt;P&gt;Hi, I had a series of functions that I obtained from previous studies and I wanted to apply these functions to my data. And I also wanted to test if these functions fit our data. Could anyone give some hints on the coding ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Aug 2020 19:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678766#M32600</guid>
      <dc:creator>gx2144</dc:creator>
      <dc:date>2020-08-23T19:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with fitting data with an existing varaible</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678767#M32601</link>
      <description>&lt;P&gt;"Functions" is somewhat vague. Can you be specific?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;And I also wanted to test if these functions fit our data.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, please be specific about what you mean by "test if these functions fit our data".&lt;/P&gt;</description>
      <pubDate>Sun, 23 Aug 2020 19:22:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678767#M32601</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-23T19:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with fitting data with an existing varaible</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678768#M32602</link>
      <description>&lt;P&gt;The equations were:&lt;/P&gt;&lt;P&gt;R5 (KPa/L/s) = −3.841167 × logHeight + 8.671580;&lt;/P&gt;&lt;P&gt;R20 (KPa/L/s) = −2.546561 × logHeight + 5.841867;&lt;/P&gt;&lt;P&gt;X5 (KPa/L/s) = −0.000097 × Age + 1.018597 × logHeight − 2.343672.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a data set that contains these variables(height, age, R5,R20,X5) and I wanted to apply these functions on my data set. And I wanted to see if these equations fit my data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this makes sense to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Aug 2020 19:31:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678768#M32602</guid>
      <dc:creator>gx2144</dc:creator>
      <dc:date>2020-08-23T19:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with fitting data with an existing varaible</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678769#M32603</link>
      <description>&lt;P&gt;Okay, here's some untested code using the natural logarithm (base e) of the value of Height&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set have;
    R5  = −3.841167 * log(Height) + 8.671580;
    R20 = −2.546561 * log(Height) + 5.841867;
    X5 = −0.000097 * Age + 1.018597 * log(Height) − 2.343672;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Aug 2020 19:41:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Need-help-with-fitting-data-with-an-existing-varaible/m-p/678769#M32603</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-23T19:41:35Z</dc:date>
    </item>
  </channel>
</rss>

