<?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 compute confidence intervals for Wilcoxon Signed Rank? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573832#M12586</link>
    <description>&lt;P&gt;I have used Wilcoxon Signed Rank, as my data are both&amp;nbsp;dependent and not normally distributed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With NPAR1WAY, I thought, you have rank sum test&amp;nbsp;and assume independent data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I indeed refer to the t-statistic of the Wilcoxon Signed Rank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jul 2019 13:24:07 GMT</pubDate>
    <dc:creator>CE_SAS</dc:creator>
    <dc:date>2019-07-16T13:24:07Z</dc:date>
    <item>
      <title>How to compute confidence intervals for Wilcoxon Signed Rank?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573824#M12583</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it&amp;nbsp;possible with SAS to compute 95% confidence intervals for a Wilcoxon Signed Rank test, sample size 50?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I am using the following code, which do not provide CI :&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ods&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;select&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; TestsForLocation;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;univariate&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; = MFP.NutrientsT2_Diff ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;title&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="2"&gt;"Nonparametric Test NoQC - Wilcoxon Signed Rank Test"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;var&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Sod_Diff Sod_DiffQC;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 12:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573824#M12583</guid>
      <dc:creator>CE_SAS</dc:creator>
      <dc:date>2019-07-16T12:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute confidence intervals for Wilcoxon Signed Rank?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573828#M12584</link>
      <description>&lt;P&gt;PROC UNIVARIATE provides a one-sample test for location. Based on your sample code, it looks like you might be interested in a two-sample test for the difference between two groups,&amp;nbsp; If so, use PROC NPAR1WAY and the WILCOXON option. &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_npar1way_examples01.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;An example is provided in the PROC NPAR1WAY documentation&lt;/A&gt;. Notice that you'll have to transform your data set from "wide" format to "long" format by including a binary CLASS variable that indicates the groups.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That said, I don't understand your statement. You don't get confidence intervals for test. A statistical test generates a statistic which you use to accept or reject some hypothesis at some significance level. You can get CIs for the parameter that the statistic estimates, but not for a test.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 13:49:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573828#M12584</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-07-16T13:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute confidence intervals for Wilcoxon Signed Rank?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573832#M12586</link>
      <description>&lt;P&gt;I have used Wilcoxon Signed Rank, as my data are both&amp;nbsp;dependent and not normally distributed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With NPAR1WAY, I thought, you have rank sum test&amp;nbsp;and assume independent data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I indeed refer to the t-statistic of the Wilcoxon Signed Rank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 13:24:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573832#M12586</guid>
      <dc:creator>CE_SAS</dc:creator>
      <dc:date>2019-07-16T13:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute confidence intervals for Wilcoxon Signed Rank?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573839#M12591</link>
      <description>&lt;P&gt;The bootstrap method enables you to examine the sampling distribution of any statistic.&lt;/P&gt;
&lt;P&gt;For a univariate statistic, start by reading&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/08/10/bootstrap-confidence-interval-sas.html" target="_self"&gt;"Compute a bootstrap confidence interval in SAS"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you decide to go with the two-sample version, imitate the ideas and programs in&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2018/06/20/bootstrap-method-example-sas.html" target="_self"&gt;"The bootstrap method in SAS: A t test example"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 13:54:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/573839#M12591</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-07-16T13:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute confidence intervals for Wilcoxon Signed Rank?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/897633#M39919</link>
      <description>&lt;P&gt;You can use Hodges - Lehmann (HL) estimation to show the CIs:&lt;/P&gt;
&lt;P&gt;proc NPAR1WAY data=tegs /*wilcoxon*/;&lt;BR /&gt;title "Nonparametric test to compare respiration between growth and gap area";&lt;BR /&gt;class orchard;&lt;BR /&gt;var apples;&lt;BR /&gt;exact wilcoxon HL;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 18:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-compute-confidence-intervals-for-Wilcoxon-Signed-Rank/m-p/897633#M39919</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2023-10-06T18:27:45Z</dc:date>
    </item>
  </channel>
</rss>

