<?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: Trend analysis for non-parametric water quality data in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400425#M20874</link>
    <description>&lt;P&gt;At least provide the code that you ran and the output that makes you think "it didn't work".&lt;/P&gt;
&lt;P&gt;You are very likely to get a basic syntax example that could well duplicate what you did. So providing what you did will prevent getting the exact same code as an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you have data measured at dates. Do you have multiple measurements on the same date? Are they for different or same sites?&lt;/P&gt;
&lt;P&gt;Are the date intervals constant (every 5 days for example) or do they they vary?&lt;/P&gt;</description>
    <pubDate>Tue, 03 Oct 2017 15:38:31 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-10-03T15:38:31Z</dc:date>
    <item>
      <title>Trend analysis for non-parametric water quality data</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400416#M20873</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help writing a code that will help me identify trends in water quality data over time. Several people have recommended Mann Kendall / &amp;nbsp;kendalls tau but I'm having trouble getting the code to work. An example of the data set will be Date (MM/DD/YYYY) and then the numeric water quality data. Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 19:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400416#M20873</guid>
      <dc:creator>Captina</dc:creator>
      <dc:date>2017-10-02T19:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Trend analysis for non-parametric water quality data</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400425#M20874</link>
      <description>&lt;P&gt;At least provide the code that you ran and the output that makes you think "it didn't work".&lt;/P&gt;
&lt;P&gt;You are very likely to get a basic syntax example that could well duplicate what you did. So providing what you did will prevent getting the exact same code as an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you have data measured at dates. Do you have multiple measurements on the same date? Are they for different or same sites?&lt;/P&gt;
&lt;P&gt;Are the date intervals constant (every 5 days for example) or do they they vary?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 15:38:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400425#M20874</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-10-03T15:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Trend analysis for non-parametric water quality data</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400461#M20877</link>
      <description>&lt;P&gt;Ballardw, thanks for the quick response. The code I used was:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;input day pH;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc corr data=river kendall;&lt;BR /&gt;var day; with pH;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It produced two numbers for kendalls tau a -0.348 and then below it a 0.0070&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have 21 sites which were sampled every four weeks so we technically have 21 values for each sampling date. The code above was used for 1 site (30 observations) to test that it worked before being used for the entire data set.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 21:21:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400461#M20877</guid>
      <dc:creator>Captina</dc:creator>
      <dc:date>2017-10-02T21:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trend analysis for non-parametric water quality data</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400513#M20881</link>
      <description>&lt;P&gt;As the result table heading suggests&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;                      Kendall Tau b Correlation Coefficients
                           Prob &amp;gt; |tau| under H0: Tau=0
                              Number of Observations
&lt;/PRE&gt;
&lt;P&gt;The top number is the value of the correlation and&amp;nbsp;below is the&amp;nbsp;value of its significance. Calculation details are &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/63963/HTML/default/viewer.htm#procstat_corr_sect015.htm" target="_blank"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your data should be arranged in three columns (site time pH), sorted by site and time, so that you can request a correlation&amp;nbsp;analysis&amp;nbsp;BY SITE;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 03:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trend-analysis-for-non-parametric-water-quality-data/m-p/400513#M20881</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-10-03T03:38:56Z</dc:date>
    </item>
  </channel>
</rss>

