<?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: Statistical test in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945132#M370305</link>
    <description>&lt;P&gt;You are doing Paried Test.&lt;/P&gt;
&lt;P&gt;1) as ballardw said try Paried-TTest by proc ttest:&lt;/P&gt;
&lt;PRE&gt;proc ttest data=have;
paired before*after;
run;&lt;/PRE&gt;
&lt;P&gt;2) try Mixed or GEE model to take Before-After (Paired) Data as a&amp;nbsp;&lt;SPAN&gt;repeated measures test.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.sas.com/kb/46/997.html" target="_blank"&gt;https://support.sas.com/kb/46/997.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Suppose you have data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;id  before  after
1   1            2
2    3            5
3    2            7
4    3            1
..............&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;And change it into longtidual data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;id  member response
1   before     1
1   after        2
2    before     3
2    after        5
.........&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;And using GEE model&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt; proc genmod data=indiv;
       class id member;
       model response = member;
       repeated subject=id;
       lsmeans member / diff cl;
       run;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Or Mixed model&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt; proc mixed data=indiv;
       class id member;
       model response = member /solution ;
       repeated  /subject=id type=ar(1);
       lsmeans member / diff cl;
       run;&lt;/PRE&gt;</description>
    <pubDate>Wed, 25 Sep 2024 01:42:00 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-09-25T01:42:00Z</dc:date>
    <item>
      <title>Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945088#M370285</link>
      <description>&lt;P&gt;Is there a test to determine whether a column of individual student ratings (Likert 1-5) is significantly different from another column by the same rater of the same students at a later time?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:00:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945088#M370285</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945090#M370286</link>
      <description>&lt;P&gt;Short answer: Yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Details would depend on what you want to test. Change per student(would require variable identifying the student)? Maybe a paired t-test of the mean difference.&lt;/P&gt;
&lt;P&gt;Distribution of scores? Chi-square perhaps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you state the research question the statistic is supposed to apply to?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:08:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945090#M370286</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-09-24T19:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945091#M370287</link>
      <description>&lt;P&gt;The context is the evaluation of candidates for admission. Ratings are 1-5. We're trying to determine if a new element of the selection process matters so we're asking for ratings of each student before the rater sees this new element, and then after, to see if the new element has a significant effect on the ratings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:12:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945091#M370287</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945092#M370288</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/413680"&gt;@newtriks&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The context is the evaluation of candidates for admission. Ratings are 1-5. We're trying to determine if a new element of the selection process matters so we're asking for ratings of each student before the rater sees this new element, and then after, to see if the new element has a significant effect on the ratings.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you talking about MEAN differences before/after? Or distribution of results before vs after? Or standard deviations? Or something else?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:18:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945092#M370288</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-24T19:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945095#M370289</link>
      <description>&lt;P&gt;Not mean because we've nothing to compare the change to, other than "not change", which is our null. We're looking for ANY change. Looking at both the absolute value of the change AND whether there was a change regardless of size would both be of interest. Basically, are these two columns of numbers different in a significant way?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945095#M370289</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945098#M370290</link>
      <description>&lt;P&gt;I find this confusing. Why can't we subtract before minus after and compute the mean of the differences and see if it is statistically different from zero? Actually, the real question is more the first part: "Why can't we subtract before minus after and compute the mean of the differences"?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945098#M370290</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-24T19:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945101#M370291</link>
      <description>&lt;P&gt;Wouldn't the "pluses" (say, a 1 to a 3) and the "minuses" (ie 4 to a 2) mitigate the effect when they're averaged with one another? We're looking for change, whatever the direction. If I'm understanding your approach, there could be a lot of individual change but potentially 0 in the aggregate if they all even out, no?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:30:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945101#M370291</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945103#M370292</link>
      <description>&lt;P&gt;Ok, that makes sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We could compare the distribution of before to the distribution of after. Does that sound like it meets your needs?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:38:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945103#M370292</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-24T19:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945106#M370293</link>
      <description>&lt;P&gt;Yes.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:39:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945106#M370293</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945107#M370294</link>
      <description>&lt;P&gt;Lots of ways to do this in SAS&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/formally-test-difference-of-two-distributions/td-p/740356" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/Statistical-Procedures/formally-test-difference-of-two-distributions/td-p/740356&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;One of the examples appears to be ratings on a 1-5 scale.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945107#M370294</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-24T19:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945108#M370295</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:42:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945108#M370295</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-24T19:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945109#M370296</link>
      <description>&lt;P&gt;You haven't stated what you want to test. You've described what the data contains, sort of.&lt;/P&gt;
&lt;P&gt;Test would "is the mean score different(greater/less) between two groups" "is the distribution of scores the same/different" "is number of scores that increased/decreased significant" . Something about what you want to measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you seem to have before/after measures then some sort of paired (i.e. difference of individuals) scores is likely where you want to be.&lt;/P&gt;
&lt;P&gt;Some possibilities: Sign test: which looks at the number of increases vs decreases (NOT magnitude just direction) and basically ignores ties. If there are "enough" Plus then scores increase, if&amp;nbsp; enough minus then decreased if not enough of either then no statistical significance. One nice thing about this test is that it is appropriate for small samples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sign-rank test, ranks the differences and considers sign&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both of these can be done in Proc Univariate by calculating that difference (after-before per student).&lt;/P&gt;
&lt;P&gt;If you have multiple "raters" that you want considered then sort the data by the "rater" variable and use that on a BY statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to test a difference of the means then one of the basic would be a Ttest (Proc Ttest) and since your data is before after then likely PAIRED statement with Before variable * After Variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appropriate tests also depend on sample sizes.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 19:59:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945109#M370296</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-09-24T19:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945132#M370305</link>
      <description>&lt;P&gt;You are doing Paried Test.&lt;/P&gt;
&lt;P&gt;1) as ballardw said try Paried-TTest by proc ttest:&lt;/P&gt;
&lt;PRE&gt;proc ttest data=have;
paired before*after;
run;&lt;/PRE&gt;
&lt;P&gt;2) try Mixed or GEE model to take Before-After (Paired) Data as a&amp;nbsp;&lt;SPAN&gt;repeated measures test.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.sas.com/kb/46/997.html" target="_blank"&gt;https://support.sas.com/kb/46/997.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Suppose you have data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;id  before  after
1   1            2
2    3            5
3    2            7
4    3            1
..............&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;And change it into longtidual data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;id  member response
1   before     1
1   after        2
2    before     3
2    after        5
.........&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;And using GEE model&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt; proc genmod data=indiv;
       class id member;
       model response = member;
       repeated subject=id;
       lsmeans member / diff cl;
       run;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Or Mixed model&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt; proc mixed data=indiv;
       class id member;
       model response = member /solution ;
       repeated  /subject=id type=ar(1);
       lsmeans member / diff cl;
       run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Sep 2024 01:42:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945132#M370305</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-09-25T01:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945232#M370332</link>
      <description>&lt;P&gt;One approach is to binarize the data and use McNemar's test in PROC FREQ.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For each student:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - if their Likert score increased, change their first observation to 0 and their second observation to 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - if their Likert score decreased, change their first observation to 1 and their second observation to 0&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - if their Likert score remained unchanged, code both observations as 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;McNemar's test determines if the discordant proportions (total 1's to 0's and total 0's to 1's across your sample) are significantly different from each other.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One caveat is you lose out on magnitude changes, because binarizing the data treats moving from 1 to 5 the same as moving from 3 to 4. If you care about magnitude changes, don't use this approach. This approach captures whether the aggregate change in perception (either positive or negative) is significantly different from the null hypothesis, which assumes no change in perception.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data in;
 input uid $ before after;
datalines;
A 0 0
B 0 1
C 0 1
D 0 0
E 1 0
F 0 1
G 0 1
H 0 0
I 0 1
J 0 1
K 0 1
L 0 0
M 0 0
N 1 0
O 0 1
P 0 1
Q 0 1
R 0 0
S 0 0
T 0 1
U 0 1
V 0 1
W 0 1
X 1 0
Y 0 1
Z 1 0
;

proc freq data=in; 
 tables before*after /agree nocol norow;  
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Sep 2024 16:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945232#M370332</guid>
      <dc:creator>ChanceTGardener</dc:creator>
      <dc:date>2024-09-25T16:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945368#M370395</link>
      <description>&lt;P&gt;My interest is "did enough opinions change - whether up or down, doesn't matter - to be able to say that the new information changed opinions?" In other words, both increase and decrease should add to the significance of my point estimate, not negate each other until one comes out the winner. Can I work with McNemar in this way, or is there another test which does this?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 20:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945368#M370395</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-26T20:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945371#M370396</link>
      <description>&lt;P&gt;McNemar's test tests whether the discordant proportions are significantly different from each other.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the context of your problem, let:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P[UpVote] = sum of all students who upvoted&lt;/P&gt;
&lt;P&gt;P[DownVote] = sum of all students who downvoted&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Students whose scores do not change are not factored into the chi-square statistic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The null hypothesis is P[UpVote] = P[DownVote], meaning the total upvotes and downvotes are statistically equivalent&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The alternative is P[UpVote] != P[DownVote].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;McNemar's test is testing whether or not these values are significantly different from each other.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your description "&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;"did enough opinions change - whether up or down, doesn't matter - to be able to say that the new information changed opinions?"&lt;/STRONG&gt;, does not make a distinction between upvotes and downvotes.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you're treating upvotes and downvotes the same, then no, McNemar's test is not the right choice.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 21:18:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945371#M370396</guid>
      <dc:creator>ChanceTGardener</dc:creator>
      <dc:date>2024-09-26T21:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945372#M370397</link>
      <description>&lt;P&gt;The null is "the votes did not change": every relative vote (before vs. after) = 0&lt;/P&gt;
&lt;P&gt;Alternative is "the votes changed": every relative vote (or a significant enough amount of them) = 1&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 21:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945372#M370397</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-26T21:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945373#M370398</link>
      <description>&lt;P&gt;The null is "the votes did not change": every relative vote (before vs. after) = 0&lt;/P&gt;
&lt;P&gt;CORRECTION Alternative is "the votes changed": ABSOLUTE VALUE of every relative vote (or a significant enough amount of them) = 1&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 21:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945373#M370398</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-26T21:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945376#M370399</link>
      <description>&lt;P&gt;For each student, let:&lt;/P&gt;
&lt;P&gt;D = After - Before&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here, D=0 corresponds to no change in score.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If D is normally distributed, use the t-test mentioned by others earlier in this thread. If it is not normally distributed, use the Wilcoxon Signed-Rank Test, which does not assume normality. Both tests assume the distribution is symmetric.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This blog describes both in more detail and how to apply in SAS:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2023/07/19/wilcoxon-signed-rank.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2023/07/19/wilcoxon-signed-rank.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 21:45:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945376#M370399</guid>
      <dc:creator>ChanceTGardener</dc:creator>
      <dc:date>2024-09-26T21:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Statistical test</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945501#M370425</link>
      <description>&lt;P&gt;So there is no way to measure absolute change? Theoretically, by the t-test every score could change by 2 but as long as half of them are +2 and half are -2, the test will reflect no change at all. Is this correct, or am I missing something?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 19:17:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Statistical-test/m-p/945501#M370425</guid>
      <dc:creator>newtriks</dc:creator>
      <dc:date>2024-09-27T19:17:49Z</dc:date>
    </item>
  </channel>
</rss>

