<?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: Test of Statistical Significance in SAS in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624624#M20136</link>
    <description>&lt;P&gt;Show us what you have tried.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2020 20:10:26 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-02-13T20:10:26Z</dc:date>
    <item>
      <title>Test of Statistical Significance in SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624622#M20135</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dummy;
input time 2. mass :4.;
infile datalines;
datalines;
0	6.64
1	6.34
2	6.04
4	5.47
6	4.94
8	4.44
10	3.98
12	3.55
14	3.15
16	2.79
18	2.45
20	2.14
22	1.86
24	1.6
26	1.37
28	1.17
30	0.98
35	0.6
40	0.34
45	0.17
50	0.06
;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;a)Write the equation of a straight-line model relating the value of the mass of the spill (y) and the&lt;BR /&gt;time (x).&lt;BR /&gt;b)Find a 95% confidence interval for the mean mass of all spills with an elapsed time of 15&lt;BR /&gt;minutes. Interpret the result&lt;BR /&gt;c)Find a 95% prediction interval for the mass of a single spill with an elapsed time of 15 minutes.&lt;BR /&gt;Interpret the result.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 20:01:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624622#M20135</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2020-02-13T20:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Test of Statistical Significance in SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624624#M20136</link>
      <description>&lt;P&gt;Show us what you have tried.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 20:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624624#M20136</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-13T20:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Test of Statistical Significance in SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624631#M20138</link>
      <description>&lt;P&gt;Regression tutorial (code)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/webbooks/reg/chapter1/regressionwith-saschapter-1-simple-and-multiple-regression/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/webbooks/reg/chapter1/regressionwith-saschapter-1-simple-and-multiple-regression/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regression tutorial (SAS Studio Task)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://video.sas.com/detail/video/5537540651001/the-linear-regression-task-in-sas%C2%AE-studio?autoStart=true&amp;amp;q=regression" target="_blank"&gt;https://video.sas.com/detail/video/5537540651001/the-linear-regression-task-in-sas%C2%AE-studio?autoStart=true&amp;amp;q=regression&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC REG documentation - check the example for fully worked examples including code and explanations&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_reg_syntax01.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_reg_syntax01.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/236411"&gt;@Daily1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dummy;
input time 2. mass :4.;
infile datalines;
datalines;
0	6.64
1	6.34
2	6.04
4	5.47
6	4.94
8	4.44
10	3.98
12	3.55
14	3.15
16	2.79
18	2.45
20	2.14
22	1.86
24	1.6
26	1.37
28	1.17
30	0.98
35	0.6
40	0.34
45	0.17
50	0.06
;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;a)Write the equation of a straight-line model relating the value of the mass of the spill (y) and the&lt;BR /&gt;time (x).&lt;BR /&gt;b)Find a 95% confidence interval for the mean mass of all spills with an elapsed time of 15&lt;BR /&gt;minutes. Interpret the result&lt;BR /&gt;c)Find a 95% prediction interval for the mass of a single spill with an elapsed time of 15 minutes.&lt;BR /&gt;Interpret the result.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 20:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Test-of-Statistical-Significance-in-SAS/m-p/624631#M20138</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-13T20:15:26Z</dc:date>
    </item>
  </channel>
</rss>

