<?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 LOG10 FUNCTION IN SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729467#M226998</link>
    <description>&lt;P&gt;Good day&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do we program this in SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log10(90*20*10^dilution)&lt;/P&gt;</description>
    <pubDate>Fri, 26 Mar 2021 19:06:23 GMT</pubDate>
    <dc:creator>Dinkepile</dc:creator>
    <dc:date>2021-03-26T19:06:23Z</dc:date>
    <item>
      <title>LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729467#M226998</link>
      <description>&lt;P&gt;Good day&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do we program this in SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log10(90*20*10^dilution)&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:06:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729467#M226998</guid>
      <dc:creator>Dinkepile</dc:creator>
      <dc:date>2021-03-26T19:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729468#M226999</link>
      <description>&lt;P&gt;Assuming there is a variable named dilution and it is numeric:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result =Log10(90*20*10**dilution);&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729468#M226999</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-26T19:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729470#M227000</link>
      <description>Yes thank you.&lt;BR /&gt;&lt;BR /&gt;Do you perhaps know a function that can turn a number of days and give&lt;BR /&gt;hours instead?&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:13:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729470#M227000</guid>
      <dc:creator>Dinkepile</dc:creator>
      <dc:date>2021-03-26T19:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729478#M227003</link>
      <description>&lt;P&gt;hours = days * 24 ;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729478#M227003</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-03-26T19:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729479#M227004</link>
      <description>&lt;P&gt;Wait, wait, wait!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;result =Log10(90*20*10**dilution);
 /*
 ... =Log10(90*20) + Log10(10**dilution);
 ... =Log10(90*20) + dilution * Log10(10);
 ... =Log10(90*20) + dilution * 1;
*/
result =Log10(90*20) + dilution ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/List_of_logarithmic_identities" target="_blank" rel="noopener"&gt;List of logarithmic identities - Wikipedia&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is better for numerical precision purposes, I believe.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729479#M227004</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2021-03-26T19:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729484#M227007</link>
      <description>Thanks so much for your email.&lt;BR /&gt;&lt;BR /&gt;Kind Regards&lt;BR /&gt;Dinkepile&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Mar 2021 20:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729484#M227007</guid>
      <dc:creator>Dinkepile</dc:creator>
      <dc:date>2021-03-26T20:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: LOG10 FUNCTION IN SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729496#M227014</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15329"&gt;@PhilC&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Wait, wait, wait!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;result =Log10(90*20*10**dilution);
 /*
 ... =Log10(90*20) + Log10(10**dilution);
 ... =Log10(90*20) + dilution * Log10(10);
 ... =Log10(90*20) + dilution * 1;
*/
result =Log10(90*20) + dilution ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/List_of_logarithmic_identities" target="_blank" rel="noopener"&gt;List of logarithmic identities - Wikipedia&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is better for numerical precision purposes, I believe.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Probably.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 21:06:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOG10-FUNCTION-IN-SAS/m-p/729496#M227014</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-26T21:06:03Z</dc:date>
    </item>
  </channel>
</rss>

