<?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 Convert BMI to Z scores in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501277#M133642</link>
    <description>&lt;P&gt;OUT=&amp;lt;datasetname&amp;gt; on the proc statement creates the output data set. By default the VAR variables are replaced by their scores.&lt;/P&gt;
&lt;P&gt;The OPREFIX option indicates whether the original variable is kept and a prefix assigned such as OPREFIX=base would have the original value in the output set named basebmi. You can also specify a prefix for the scored value with SPREFIX, SPREFIX=zscore would have the standardized value as zscorebmi in the output set&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Oct 2018 20:31:50 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-10-03T20:31:50Z</dc:date>
    <item>
      <title>How to Convert BMI to Z scores</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501216#M133611</link>
      <description>&lt;P&gt;Hello Sir/Madam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a data set with bmi values and wish to covert it to Z scores. Any help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;DA&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 17:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501216#M133611</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2018-10-03T17:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Convert BMI to Z scores</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501228#M133616</link>
      <description>&lt;P&gt;Are you looking to use the mean and standard deviation of your data or do you need to use those from another source?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If internal to the data you could use proc stdize which will replace the variable with the standardized value in an output set. The default method is STD which produces z-scores.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 17:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501228#M133616</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-03T17:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Convert BMI to Z scores</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501238#M133619</link>
      <description>&lt;P&gt;I plan to use its std and mean. so I can use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc stdize data=totalscores method=std pstat; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;var total; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;by Type; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How do I output the z score using above statement? Is the code below correct?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc stdize data=totalscores method=std pstat; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;var total; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;by Type; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;output zscore=zscore;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run; &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 18:19:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501238#M133619</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2018-10-03T18:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Convert BMI to Z scores</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501277#M133642</link>
      <description>&lt;P&gt;OUT=&amp;lt;datasetname&amp;gt; on the proc statement creates the output data set. By default the VAR variables are replaced by their scores.&lt;/P&gt;
&lt;P&gt;The OPREFIX option indicates whether the original variable is kept and a prefix assigned such as OPREFIX=base would have the original value in the output set named basebmi. You can also specify a prefix for the scored value with SPREFIX, SPREFIX=zscore would have the standardized value as zscorebmi in the output set&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 20:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Convert-BMI-to-Z-scores/m-p/501277#M133642</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-03T20:31:50Z</dc:date>
    </item>
  </channel>
</rss>

