<?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: Comparison of 2 proportions in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551402#M27503</link>
    <description>I tried it and it works. However since the second group only consist on those who past the first step, our two sample aren't independent and therefore I don't think I can use a t-test. Am I right?</description>
    <pubDate>Tue, 16 Apr 2019 15:14:27 GMT</pubDate>
    <dc:creator>Shawn08</dc:creator>
    <dc:date>2019-04-16T15:14:27Z</dc:date>
    <item>
      <title>Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550266#M27463</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sure this is an easy question, but I would gladly appreciate the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compare the proportion of women through two different phases. Let's say I have the following dataset:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
	input wom second_phase wom_2 wtps;
	datalines;
	1 1 1 3
	1 0 . 2
	1 1 0 2
	0 1 0 2
	0 0 . 5
	1 1 1 3
	1 1 0 4
	1 1 . 4
	1 0 . 5
	0 1 0 1
	0 0 . 3
	1 1 . 2
	1 1 1 2
	1 1 0 2
	;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Using the weights, I can calculate that the weighted proportion of women in before second phase&amp;nbsp;is equal to&amp;nbsp;72.5%, whereas the weighted&amp;nbsp;proportion of women among those who qualified for the second phase (second_phase = 1) is equal to 42.1%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What procedure could I use to be able to conclude that the differences between the weighted&amp;nbsp;proportions of women&amp;nbsp;across the two steps are statistically significant?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks you in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 15:01:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550266#M27463</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-11T15:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550272#M27464</link>
      <description>&lt;P&gt;Example using PROC FREQ&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_freq_examples05.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_freq_examples05.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 15:11:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550272#M27464</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-11T15:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550276#M27465</link>
      <description>PROC FREQ or SURVEYFREQ using the binomial option. I think there's an example in the documentation.</description>
      <pubDate>Thu, 11 Apr 2019 15:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550276#M27465</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-11T15:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550285#M27466</link>
      <description>&lt;P&gt;Thank you for your quick response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem I have is that the missing values found in the variable wom_2 are excluding the observations in proc freq for both wom and wom_2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I use for the proc freq&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data = test;
	tables wom * wom_2 / chisq;
	weight wtps;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;And here is the output&lt;/P&gt;&lt;TABLE border="1" cellspacing="1" cellpadding="2"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Table of wom by wom_2&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;wom_2&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;Total&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;1&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="left"&gt;&lt;FONT face="Calibri" size="3"&gt;wom&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;3&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;3&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Frequency&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Percent&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;15.79&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;15.79&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Row Pct&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;100&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Col Pct&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;27.27&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;0&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;1&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Frequency&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;8&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;8&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;16&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Percent&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;42.11&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;42.11&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;84.21&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Row Pct&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;50&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;50&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Col Pct&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;72.73&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;100&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;11&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;8&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;19&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="left"&gt;&lt;FONT face="Calibri" size="3"&gt;Total&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Frequency&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT face="Calibri" size="3"&gt;Percent&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;57.89&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;42.11&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="right"&gt;&lt;FONT face="Calibri" size="3"&gt;100&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center"&gt;&lt;FONT color="#ff0000" face="Calibri" size="3"&gt;Frequency Missing = 21&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&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;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 15:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550285#M27466</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-11T15:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550287#M27467</link>
      <description>Please see my other message for additional explanation of my problem. Thank you</description>
      <pubDate>Thu, 11 Apr 2019 15:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550287#M27467</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-11T15:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550293#M27468</link>
      <description>&lt;P&gt;Yes, data with missing values in one of the two category variables cannot be used in this analysis.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 15:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550293#M27468</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-11T15:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550296#M27469</link>
      <description>Is there any other alternatives I could use?</description>
      <pubDate>Thu, 11 Apr 2019 15:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550296#M27469</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-11T15:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550378#M27473</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/141055"&gt;@Shawn08&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Is there any other alternatives I could use?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What do you mean? If you don't have the value for that observation how are going to account for that?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 19:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/550378#M27473</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-11T19:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551202#M27487</link>
      <description>This is what I'm looking for. I need to find a method which compare proportions of population in phase 1 and phase 2 when some of the sample are dropped in the 2nd step. Would you have any idea?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 15 Apr 2019 19:08:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551202#M27487</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-15T19:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551254#M27490</link>
      <description>This precludes paired testing, but I would run two t-tests as normal. In one situation leave all records in each group and test the difference, in the second, only include observations where you have measurements for both start and finish. If the results are not similar then you have an issue. Without knowing how many are missing or why they're missing (systematic vs random) we can't advise on imputation methods.</description>
      <pubDate>Mon, 15 Apr 2019 20:57:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551254#M27490</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-15T20:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551402#M27503</link>
      <description>I tried it and it works. However since the second group only consist on those who past the first step, our two sample aren't independent and therefore I don't think I can use a t-test. Am I right?</description>
      <pubDate>Tue, 16 Apr 2019 15:14:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551402#M27503</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2019-04-16T15:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Comparison of 2 proportions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551406#M27504</link>
      <description>I don't know how you're using independent here...and I don't think it's quite right. The assumptions of a t-test are met, IMO, but you have a biased sample if that's what you're thinking.</description>
      <pubDate>Tue, 16 Apr 2019 15:21:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparison-of-2-proportions/m-p/551406#M27504</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-16T15:21:27Z</dc:date>
    </item>
  </channel>
</rss>

