<?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: is appropriate to use error bars to account for missing data when you have the full population in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792179#M38827</link>
    <description>&lt;P&gt;It sounds like what you want is confidence limits for the proportion of success for each of the three groups: Male, Female, and PNA.&amp;nbsp; You could also ask for statistical tests, such as "is there a significant difference for the proportions of success&amp;nbsp;between the groups?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you only care whether some group is different (but you don't care which one), you can use PROC FREQ and a chi-square test:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Awards;
length Gender $6 Success $3;
input Gender Success Count;
datalines;
Male    Yes  330
Male    No   570
Female  Yes  570
Female  No  1230
PNA     Yes  100
PNA     No   200
;

proc freq data=Awards;
   weight Count;
   tables Gender*Success / chisq;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The output shows that the observed proportion in some group is different than expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a more sophisticated model that enables you to quantitatively compare the proportions and the effect of gender, then you can use the event-trial syntax in PROC LOGISTIC. If you want information about the predicted proportion, you can use the LSMEANS statement to get that information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data EventTrial;
length Gender $6;
input Gender Applied Success;
datalines;
Male    900 330
Female 1800 570
PNA     300 100
;

proc logistic data=EventTrial;
   class Gender(ref='Male') / param=GLM;  /* do you want to use Male as the ref group? */
   model Success / Applied = Gender;
   lsmeans Gender / ilink diff=anom adjust=bon CL;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The odds ratio table shows that the 95% CI for the OR of Males vs Females does NOT contain 1, so you can conclude that the effect is different. However, the CI for the OR of Males vs PNA is not different from 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The LSMEANS table shows the estimated proportions are&amp;nbsp;Female=0.3167, PNA=0.3333, and Male=0.3667. The CI for Males does not include 1/3, but the other CIs do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jan 2022 14:04:33 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2022-01-25T14:04:33Z</dc:date>
    <item>
      <title>is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792011#M38811</link>
      <description>&lt;DIV class="votecell post-layout--left"&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;Hi all, have data on the large number of people who were applying to receive an award. Everyone who applied must fill out a survey and specify their gender (although they can choose "prefer not to say"). My understanding it is NOT appropriate to put "error bars" on this data given that the survey was not a &lt;EM&gt;sample&lt;/EM&gt; of the population, but rather the whole population.&lt;/DIV&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;However, say there is missing data (some people did not report their gender) and one argues that error bars are needed to account for the missing data. Hypothetical example: Submissions are 40% female, 50% male, and 10% did not say. Or you could say that success rates for females are 25%, males 26%, unknown is 27% (so conclusion depends on who is in unknown); and one could conceivably create error bars to show what the result would be if ALL unknowns were all women v. ALL the unknowns are men.&lt;/DIV&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;My understanding is that the error bars are used to reflect sampling error and NOT missing data. With missing data one would typically impute. Is this correct? Is there any value in making up error bars for missing data?&lt;/DIV&gt;
&lt;DIV class="js-voting-container d-flex jc-center fd-column ai-stretch gs4 fc-black-200" data-post-id="561655"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="postcell post-layout--right"&gt;
&lt;DIV class="s-prose js-post-body"&gt;
&lt;P&gt;(Note: cross posted to stack exchange but no responses)&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 24 Jan 2022 22:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792011#M38811</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-24T22:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792013#M38812</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;However, say there is missing data (some people did not report their gender) and one argues that error bars are needed to account for the missing data.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How would you compute these error bars in this case? These would not be based upon some standard error of the estimate that is usually done with sampled date. They would be some other type of error bars ... and that's fine with me as long as you explain that these would not be based on sampling variability. But really, how do you compute the error bars in this case?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Imputing is another way to handle this.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 22:14:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792013#M38812</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-01-24T22:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792017#M38813</link>
      <description>Prefer not to say is not missing, it's a category on it's own. And from my somewhat biased experience, it's most likely to be women/non-binary who fill in that choice primarily. However, having that option and then attempting imputation seems problematic. If you want to analyze by subpopulation then things get a bit different but I wouldn't be imputing or combining it. &lt;BR /&gt;</description>
      <pubDate>Mon, 24 Jan 2022 22:53:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792017#M38813</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-24T22:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792026#M38814</link>
      <description>&lt;P&gt;Thank you! Hypothetical example. Here is the original data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0"&gt;&lt;COLGROUP width="187"&gt;&lt;/COLGROUP&gt; &lt;COLGROUP span="3" width="85"&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Male&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Female&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;PNA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Applied&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;900&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;1800&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;300&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Selected&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;330&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;570&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;100&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;Success Rate&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;37%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;32%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;
&lt;P&gt;33%&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2 extremes:&lt;/P&gt;
&lt;P&gt;1) all the PNA are male - success rate for male= 36%, female = 32% (note, F does not change)&lt;/P&gt;
&lt;P&gt;2) all the PNA are female - success rates for male = 37% (M does not change), female = 32%&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I guess it's more that the data would be presented as a range: Male success rate ranges from 36% - 37%&lt;/P&gt;
&lt;P&gt;and&amp;nbsp; Female success rate ranges from 32%-32%&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Note this example is made up, real data would show more of a difference)&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 00:27:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792026#M38814</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-25T00:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792028#M38815</link>
      <description>&lt;P&gt;I agree imputation is problematic, and who is in the PNA is unknown (I think it could go either way).&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 00:29:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792028#M38815</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-25T00:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792042#M38817</link>
      <description>As long as the sample size is large enough I wouldn't recommend consolidating these categories. PNA could be non-binary which would not fit in either group.</description>
      <pubDate>Tue, 25 Jan 2022 01:18:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792042#M38817</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-25T01:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792148#M38819</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/398745"&gt;@mjkop56&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you! Hypothetical example. Here is the original data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0"&gt;&lt;COLGROUP width="187"&gt;&lt;/COLGROUP&gt; &lt;COLGROUP span="3" width="85"&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Male&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Female&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;PNA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Applied&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;900&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;1800&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;300&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Selected&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;330&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;570&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;100&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;Success Rate&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;37%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;32%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;
&lt;P&gt;33%&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2 extremes:&lt;/P&gt;
&lt;P&gt;1) all the PNA are male - success rate for male= 36%, female = 32% (note, F does not change)&lt;/P&gt;
&lt;P&gt;2) all the PNA are female - success rates for male = 37% (M does not change), female = 32%&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I guess it's more that the data would be presented as a range: Male success rate ranges from 36% - 37%&lt;/P&gt;
&lt;P&gt;and&amp;nbsp; Female success rate ranges from 32%-32%&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Note this example is made up, real data would show more of a difference)&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Okay, you can certainly do this, these are not error bars in any standard sense, and you would be advised to make that very very very very clear. As pointed out by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; , also be prepared to have your assumptions challenged.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 11:02:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792148#M38819</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-01-25T11:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792179#M38827</link>
      <description>&lt;P&gt;It sounds like what you want is confidence limits for the proportion of success for each of the three groups: Male, Female, and PNA.&amp;nbsp; You could also ask for statistical tests, such as "is there a significant difference for the proportions of success&amp;nbsp;between the groups?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you only care whether some group is different (but you don't care which one), you can use PROC FREQ and a chi-square test:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Awards;
length Gender $6 Success $3;
input Gender Success Count;
datalines;
Male    Yes  330
Male    No   570
Female  Yes  570
Female  No  1230
PNA     Yes  100
PNA     No   200
;

proc freq data=Awards;
   weight Count;
   tables Gender*Success / chisq;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The output shows that the observed proportion in some group is different than expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a more sophisticated model that enables you to quantitatively compare the proportions and the effect of gender, then you can use the event-trial syntax in PROC LOGISTIC. If you want information about the predicted proportion, you can use the LSMEANS statement to get that information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data EventTrial;
length Gender $6;
input Gender Applied Success;
datalines;
Male    900 330
Female 1800 570
PNA     300 100
;

proc logistic data=EventTrial;
   class Gender(ref='Male') / param=GLM;  /* do you want to use Male as the ref group? */
   model Success / Applied = Gender;
   lsmeans Gender / ilink diff=anom adjust=bon CL;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The odds ratio table shows that the 95% CI for the OR of Males vs Females does NOT contain 1, so you can conclude that the effect is different. However, the CI for the OR of Males vs PNA is not different from 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The LSMEANS table shows the estimated proportions are&amp;nbsp;Female=0.3167, PNA=0.3333, and Male=0.3667. The CI for Males does not include 1/3, but the other CIs do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 14:04:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792179#M38827</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-01-25T14:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792200#M38828</link>
      <description>&lt;P&gt;Missing data are hard.&amp;nbsp;There's a whole literature about handling missing data. I think what you're describing is some sort of 'sensitivity analysis.'&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note, in your example case I think the extremes would be the:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PNA category has 100 males that were selected and 200 females that were rejected.&amp;nbsp; That would give you a 43% acceptance for males and 28.5% acceptance for females.&amp;nbsp;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;PNA category has 100 females that were selected and 200 males that were rejected.&amp;nbsp;That would give you a 30% acceptance for males and 35% acceptance for females.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Of course it's very unlikely that either of those worst case scenario extremes occurred, which is how you end up in the land of multiple imputation etc.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 15:25:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/792200#M38828</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-01-25T15:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793310#M38877</link>
      <description>&lt;P&gt;thank you! I'm a bit unclear about how you came up with the extremes - could you please explain?&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 20:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793310#M38877</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-29T20:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793311#M38878</link>
      <description>&lt;P&gt;"Prefer not to say is not missing, it's a category on it's own." =&amp;gt; good point, as someone actually chose this option rather than skipping the question. But I'm wondering what the practical difference is between those two situations? In the case of "prefer not to answer", we don't know where they fit, so it seems to be the same thing as missing. &lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 20:18:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793311#M38878</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-29T20:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793312#M38879</link>
      <description>&lt;P&gt;thank you, this is helpful.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 20:18:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793312#M38879</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-29T20:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793313#M38880</link>
      <description>&lt;P&gt;thank you - your responses have been very helpful.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 20:19:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793313#M38880</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-01-29T20:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793395#M38883</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/398745"&gt;@mjkop56&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;thank you! I'm a bit unclear about how you came up with the extremes - could you please explain?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class="1643561631291"&gt;Hi,&lt;/P&gt;
&lt;P class="1643561631291"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="1643561631291"&gt;Your original data is:&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0"&gt;&lt;COLGROUP width="187"&gt;&lt;/COLGROUP&gt; &lt;COLGROUP span="3" width="85"&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Male&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Female&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;PNA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Applied&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;900&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;1800&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;300&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Selected&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;330&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;570&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;100&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;Success Rate&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;37%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;32%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;
&lt;P&gt;33%&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The extremes are not "all the PNA are male or al the PNA &amp;nbsp;are female." &amp;nbsp;The extremes are (I think) that gender is perfectly associated with selection among the PNA. &amp;nbsp;That would (I think) give you the most extreme estimates you could get for the acceptance rates of males and females.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if all all males among the PNA are selected and no females among the PNA are selected, your table becomes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="1643561631291"&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0"&gt;&lt;COLGROUP width="187"&gt;&lt;/COLGROUP&gt; &lt;COLGROUP span="3" width="85"&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Male&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Female&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;PNA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Applied&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;900+100=1000&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;1800+200=2000&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Selected&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;330+100=430&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;570&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;Success Rate&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;43%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;28.5%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other extreme is all females among the PNA are selected and no males among the PNA are accepted:&lt;/P&gt;
&lt;P class="1643561631291"&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0"&gt;&lt;COLGROUP width="187"&gt;&lt;/COLGROUP&gt; &lt;COLGROUP span="3" width="85"&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Male&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;Female&lt;/TD&gt;
&lt;TD align="left" style="border: 1px solid #000000;"&gt;PNA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Applied&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;900+200=1100&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;1800+100=1900&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;# Selected&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;330&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;570+100=670&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="17" align="left" style="border: 1px solid #000000;"&gt;Success Rate&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;30%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;35%&lt;/TD&gt;
&lt;TD align="right" style="border: 1px solid #000000;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jan 2022 17:15:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793395#M38883</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-01-30T17:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793835#M38917</link>
      <description>&lt;P&gt;If you're going to assume a gender after someone has said they don't want to specify one,&lt;STRONG&gt; what was the point of including that option?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 16:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/793835#M38917</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-02-01T16:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/794686#M38989</link>
      <description>&lt;P&gt;thanks for the explanation!&lt;/P&gt;</description>
      <pubDate>Sat, 05 Feb 2022 23:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/794686#M38989</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-02-05T23:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: is appropriate to use error bars to account for missing data when you have the full population</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/794687#M38990</link>
      <description>&lt;P&gt;The point in including it is that providing gender needs to be optional, it can't be required.&amp;nbsp; However, if there is a sizeable portion that did not want to answer, it affects the conclusions you can make.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Feb 2022 23:21:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/is-appropriate-to-use-error-bars-to-account-for-missing-data/m-p/794687#M38990</guid>
      <dc:creator>mjkop56</dc:creator>
      <dc:date>2022-02-05T23:21:47Z</dc:date>
    </item>
  </channel>
</rss>

