<?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 Missing p values in SAS in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949656#M47494</link>
    <description>&lt;P&gt;I` tried glm, glimmix and mixed models however, I still can not get p values and lsmeans. Simply, I just want to analyze the differences between foliar sprays on plant tissue nitrogen concentration, THC and biomass. There is no replication in this design.&amp;nbsp;&lt;/P&gt;&lt;P&gt;fs=(foliar spray)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The codes I tried below;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc mixed data=gh method=ml;&lt;BR /&gt;class fs;&lt;BR /&gt;model Nlevel = fs / s;&lt;BR /&gt;store out=MixedModel;&lt;BR /&gt;lsmeans fs/ pdiff adjust=tukey;&lt;BR /&gt;run;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc&lt;/SPAN&gt; &lt;SPAN&gt;glm&lt;/SPAN&gt;&lt;SPAN&gt; data=gh&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;class&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&amp;nbsp;Nlevel&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;fs;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;means&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;tukey&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;output&lt;/SPAN&gt; &lt;SPAN&gt;out&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;results&lt;/SPAN&gt;&lt;SPAN&gt; p=&lt;/SPAN&gt;&lt;SPAN&gt;predicted&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc&lt;/SPAN&gt; &lt;SPAN&gt;glimmix&lt;/SPAN&gt;&lt;SPAN&gt; data=gh;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;class&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&amp;nbsp;Level&lt;SPAN&gt;&amp;nbsp;= &lt;/SPAN&gt;&lt;SPAN&gt;fs&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;dist&lt;/SPAN&gt;&lt;SPAN&gt;=normal &lt;/SPAN&gt;&lt;SPAN&gt;solution&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;random&lt;/SPAN&gt; &lt;SPAN&gt;intercept&lt;/SPAN&gt;&lt;SPAN&gt; / &lt;/SPAN&gt;&lt;SPAN&gt;subject&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;lsmeans&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;pdiff&lt;/SPAN&gt; &lt;SPAN&gt;adjust&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;tukey&lt;/SPAN&gt;&lt;SPAN&gt; ;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data gh; &lt;BR /&gt;infile datalines expandtabs truncover;&lt;BR /&gt;input fs$ Nlevel THC biomass;&lt;BR /&gt;cards;&lt;BR /&gt;UEC   3.68  15.94 113.0&lt;BR /&gt;Pot3 3.67  17.68 113&lt;BR /&gt;WOH  2.34  17.20 278&lt;BR /&gt;MEH  3.03  17.69 204&lt;BR /&gt;CBioH   3.07  15.86 244&lt;BR /&gt;PCH  2.77  18.94 169&lt;BR /&gt;FFH  2.77  17.75 203&lt;BR /&gt;VIA   2.78  18.08 283&lt;BR /&gt;VIM 3.40  17.59 203&lt;BR /&gt;Pot5 3.11  18.26 113&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Oct 2024 20:02:43 GMT</pubDate>
    <dc:creator>Zynep93</dc:creator>
    <dc:date>2024-10-31T20:02:43Z</dc:date>
    <item>
      <title>Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949656#M47494</link>
      <description>&lt;P&gt;I` tried glm, glimmix and mixed models however, I still can not get p values and lsmeans. Simply, I just want to analyze the differences between foliar sprays on plant tissue nitrogen concentration, THC and biomass. There is no replication in this design.&amp;nbsp;&lt;/P&gt;&lt;P&gt;fs=(foliar spray)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The codes I tried below;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc mixed data=gh method=ml;&lt;BR /&gt;class fs;&lt;BR /&gt;model Nlevel = fs / s;&lt;BR /&gt;store out=MixedModel;&lt;BR /&gt;lsmeans fs/ pdiff adjust=tukey;&lt;BR /&gt;run;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc&lt;/SPAN&gt; &lt;SPAN&gt;glm&lt;/SPAN&gt;&lt;SPAN&gt; data=gh&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;class&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&amp;nbsp;Nlevel&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;fs;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;means&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;tukey&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;output&lt;/SPAN&gt; &lt;SPAN&gt;out&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;results&lt;/SPAN&gt;&lt;SPAN&gt; p=&lt;/SPAN&gt;&lt;SPAN&gt;predicted&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc&lt;/SPAN&gt; &lt;SPAN&gt;glimmix&lt;/SPAN&gt;&lt;SPAN&gt; data=gh;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;class&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&amp;nbsp;Level&lt;SPAN&gt;&amp;nbsp;= &lt;/SPAN&gt;&lt;SPAN&gt;fs&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;dist&lt;/SPAN&gt;&lt;SPAN&gt;=normal &lt;/SPAN&gt;&lt;SPAN&gt;solution&lt;/SPAN&gt;&lt;SPAN&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;random&lt;/SPAN&gt; &lt;SPAN&gt;intercept&lt;/SPAN&gt;&lt;SPAN&gt; / &lt;/SPAN&gt;&lt;SPAN&gt;subject&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;lsmeans&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;/ &lt;/SPAN&gt;&lt;SPAN&gt;pdiff&lt;/SPAN&gt; &lt;SPAN&gt;adjust&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;tukey&lt;/SPAN&gt;&lt;SPAN&gt; ;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data gh; &lt;BR /&gt;infile datalines expandtabs truncover;&lt;BR /&gt;input fs$ Nlevel THC biomass;&lt;BR /&gt;cards;&lt;BR /&gt;UEC   3.68  15.94 113.0&lt;BR /&gt;Pot3 3.67  17.68 113&lt;BR /&gt;WOH  2.34  17.20 278&lt;BR /&gt;MEH  3.03  17.69 204&lt;BR /&gt;CBioH   3.07  15.86 244&lt;BR /&gt;PCH  2.77  18.94 169&lt;BR /&gt;FFH  2.77  17.75 203&lt;BR /&gt;VIA   2.78  18.08 283&lt;BR /&gt;VIM 3.40  17.59 203&lt;BR /&gt;Pot5 3.11  18.26 113&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 20:02:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949656#M47494</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T20:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949658#M47495</link>
      <description>&lt;P&gt;Is that all the data??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you read the log? After I fix the Glimmix code to use the variable Nlevel in the data instead of Level this is the log I get for these procedures:&lt;/P&gt;
&lt;PRE&gt;270  proc mixed data=gh method=ml;
NOTE: Writing HTML Body file: sashtml1.htm
271  class frt;
272  model Nlevel = frt / s;
273  store out=MixedModel;
274  lsmeans frt/ pdiff adjust=tukey;
275  run;

NOTE: An infinite likelihood is assumed in iteration 0 because of a nonpositive residual variance
      estimate.
NOTE: The MIXED procedure generated the model item store USER.MIXEDMODEL.
NOTE: PROCEDURE MIXED used (Total process time):
      real time           2.31 seconds
      cpu time            1.71 seconds


276
277  proc glm data=gh;
278     class frt;
279     model Nlevel =
280  frt;
281     means frt / tukey;
282     output out=results p=predicted;
283  run;

&lt;FONT color="#00FF00"&gt;WARNING: Mean separation procedures will not be carried out due to zero degrees of freedom for
         the specified error source.&lt;/FONT&gt;
284  quit;

NOTE: The data set USER.RESULTS has 10 observations and 5 variables.
NOTE: PROCEDURE GLM used (Total process time):
      real time           0.23 seconds
      cpu time            0.03 seconds


285
286  proc glimmix data=gh;
287     class frt;
288     model nLevel = frt  / dist=normal solution;
289     random intercept / subject=frt;
290     lsmeans frt / pdiff adjust=tukey ;
291  run;



&lt;FONT color="#00FF00"&gt;WARNING: Mixed model has saturated mean and profiled variance. Fit does not proceed.&lt;/FONT&gt;
NOTE: PROCEDURE GLIMMIX used (Total process time):
      real time           0.07 seconds
      cpu time            0.04 seconds


&lt;/PRE&gt;
&lt;P&gt;Basically data issues. Zero degrees of freedom means nothing to estimate, no test.&lt;/P&gt;
&lt;P&gt;Missing standard deviation because only one value means no test as no variability in data&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 20:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949658#M47495</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-10-31T20:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949659#M47496</link>
      <description>&lt;P&gt;I remember that I got these warnings in the log. What do data issues mean? Is the type of the data or collected data&amp;nbsp;erroneous?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 20:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949659#M47496</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T20:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949660#M47497</link>
      <description>&lt;P&gt;N test was actually measured 4 times during the experiment but I averaged all 4 time points and put as one data for each foliar spray treatment. But this may change the code, and it looks like I could have done with the repeated measures. Maybe the zero estimates and no variability stem from there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;glimmix &amp;nbsp;code does not work for biomass and THC, even though these parameters are measured once only.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 20:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949660#M47497</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T20:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949663#M47498</link>
      <description>&lt;P&gt;You do not have any replication, there is one value for each level of FS, you cannot estimate the error, and so you get missing p-values. You do NOT have enough data.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Depending on exactly what you mean by "actually measured 4 times during the experiment", this may or may not help. If you simply took 4 measurements on the same plant, or you measured 4 different plants, those cases are different. We need to know EXACTLY how these 4 measurements were done.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 21:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949663#M47498</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-10-31T21:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949664#M47499</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/470212"&gt;@Zynep93&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I remember that I got these warnings in the log. What do data issues mean? Is the type of the data or collected data&amp;nbsp;erroneous?&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For a linear model you have to have at least 2 points to define a line. If there is only one there&amp;nbsp; is no way to get a slope. If all of the x,y pairs present have the same x and y they are essentially one point. Nothing to connect to make line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Degrees of freedom typically come in some of the models in an (N-1) of the actual degrees of freedom as part of the calculation for the test statistics. The DF are typically the number of values or number of value levels. If there is only one value or level then N-1 is 0 and may, again depending on the specific test and statistic get a division by 0 (undefined) or have a value not tabled for the test statistics so no result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure about the separation bit from Glimmix but suspect it is along the same lines of "not enough data" to generate a test statistic.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 21:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949664#M47499</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-10-31T21:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949666#M47500</link>
      <description>Thanks for your reply. So to be more specific, N data was collected for each foliar spray treated plant on May, July, August, September. Some other plants measured only on August and September.</description>
      <pubDate>Thu, 31 Oct 2024 21:54:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949666#M47500</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T21:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949667#M47501</link>
      <description>Thank you so much!!</description>
      <pubDate>Thu, 31 Oct 2024 21:56:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949667#M47501</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T21:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949668#M47502</link>
      <description>&lt;P&gt;I have attached the raw N% data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 22:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949668#M47502</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T22:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949669#M47503</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/470212"&gt;@Zynep93&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thanks for your reply. So to be more specific, N data was collected for each foliar spray treated plant on May, July, August, September. Some other plants measured only on August and September.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So are you taking repeated measurements on the exact same plants? Or are you measuring different plants each month?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 22:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949669#M47503</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-10-31T22:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949670#M47504</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/470212"&gt;@Zynep93&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have attached the raw N% data.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't see where anyone has requested your data. And I don't see how providing this data changes anything that we have said.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, data must be in the form of working SAS data step code (&lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;examples and instructions&lt;/A&gt;). Data in a Word document isn't what we need. Data in an Excel file isn't what we need. Data in a screen capture isn't what we need.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 22:07:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949670#M47504</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-10-31T22:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949672#M47505</link>
      <description>&lt;P&gt;Yes, taking repeated measures on the exact same plants.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2024 22:27:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949672#M47505</guid>
      <dc:creator>Zynep93</dc:creator>
      <dc:date>2024-10-31T22:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Missing p values in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949695#M47507</link>
      <description>&lt;P&gt;So truly you have no replication of levels of FS, and so no p-values are possible. The month-to-month replication do not overcome the fact that there are no replications of levels of FS.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2024 10:15:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Missing-p-values-in-SAS/m-p/949695#M47507</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-11-01T10:15:09Z</dc:date>
    </item>
  </channel>
</rss>

