<?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 calculate adjusted percentage in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623163#M19892</link>
    <description>&lt;P&gt;Well, I'm not sure I know what you mean by "adjusted". There are probably many ways to do such an adjustment, including simple stratification by age and race. Modeling is another approach, and I'm sure there are still others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a lot more detail about this study and what data is available and what type of adjustment do you want to do.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Feb 2020 20:38:03 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-02-07T20:38:03Z</dc:date>
    <item>
      <title>How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623162#M19891</link>
      <description>&lt;P&gt;Hi. Can anyone help with this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to calculate percentage of school graduate degree (3-level) by gender while adjusting for age (numeric variable) and race (categorical variable). How can I do that?&amp;nbsp;&lt;BR /&gt;thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 20:34:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623162#M19891</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-02-07T20:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623163#M19892</link>
      <description>&lt;P&gt;Well, I'm not sure I know what you mean by "adjusted". There are probably many ways to do such an adjustment, including simple stratification by age and race. Modeling is another approach, and I'm sure there are still others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a lot more detail about this study and what data is available and what type of adjustment do you want to do.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 20:38:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623163#M19892</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-07T20:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623167#M19893</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;sorry, I mean as regression model not stratified by race and age, but adjusted in the model.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 20:50:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623167#M19893</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-02-07T20:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623168#M19894</link>
      <description>&lt;P&gt;Something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=have;
    class gender race;
    model percent = gender age race;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;By the way, if you do this (or something like it), I would change the problem statement from "&lt;SPAN&gt;I would like to calculate percentage of school graduate degree..." to "I would like to &lt;EM&gt;estimate&lt;/EM&gt; the percentage of school graduate degree..."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 20:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623168#M19894</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-07T20:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623169#M19895</link>
      <description>&lt;P&gt;Thank you. The percent outcome variable has 3 categories. Also, this would give me only the beta coefficient not percent ?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 21:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623169#M19895</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-02-07T21:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623189#M19896</link>
      <description>&lt;P&gt;Three levels of the outcome variable is fine in PROC LOGISTIC. It will give betas as well as predicted (or estimated, or adjusted) percentages for each value of age, gender and race.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 22:09:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623189#M19896</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-07T22:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623203#M19897</link>
      <description>&lt;P&gt;There are so many estimators. Could you tell me which one is the estimated proportion?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 22:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623203#M19897</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-02-07T22:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted percentage</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623218#M19898</link>
      <description>&lt;P&gt;This example shows how to obtain the predicted probabilities. It has three levels of Y like yours. It requires a SCORE data set, which contains the values of Gender, Race and Age that you want to predict at (you can make this SCORE data set up yourself). The data set that is in the OUT= part of the SCORE statement will contain the predicted probabilities. Or you can use the EFFECTPLOT statement.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_logistic_examples20.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_blank" rel="noopener"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_logistic_examples20.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 23:24:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-calculate-adjusted-percentage/m-p/623218#M19898</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-07T23:24:36Z</dc:date>
    </item>
  </channel>
</rss>

