<?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: SAS input format for one way ANOVA in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402231#M97655</link>
    <description>&lt;P&gt;Thanks so much Warren! I spent the whole day could not make it. Thanks for the timely reply. It helped a lot&lt;/P&gt;</description>
    <pubDate>Sun, 08 Oct 2017 23:46:07 GMT</pubDate>
    <dc:creator>YueLSU</dc:creator>
    <dc:date>2017-10-08T23:46:07Z</dc:date>
    <item>
      <title>SAS input format for one way ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402228#M97652</link>
      <description>&lt;P&gt;Hi folks this is my first post in this community and it would be really appreciated if someone give some advise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am editing code for a one-way anova analysis but how I in put data before was all like this, for wxample:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Input Name $ value;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;a 1&lt;/P&gt;&lt;P&gt;a 2&lt;/P&gt;&lt;P&gt;a 3&lt;/P&gt;&lt;P&gt;b 4&lt;/P&gt;&lt;P&gt;b 5&amp;nbsp;&lt;/P&gt;&lt;P&gt;b 6&lt;/P&gt;&lt;P&gt;c 7&lt;/P&gt;&lt;P&gt;c 8&lt;/P&gt;&lt;P&gt;c 9;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However this time I got a large data set organized like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a 1 2 3&lt;/P&gt;&lt;P&gt;b 4 5 6&lt;/P&gt;&lt;P&gt;c 7 8 9&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering how I can input to assign all values in the same row following 'a' to variable 'Name', and same for 'b', and 'c', without having to return to next row each time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2017 23:31:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402228#M97652</guid>
      <dc:creator>YueLSU</dc:creator>
      <dc:date>2017-10-08T23:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS input format for one way ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402229#M97653</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x(drop=i);
input Name $ @;
do i = 1 to 3; input value @; output; end;
datalines;
a 1 2 3
b 4 5 6
c 7 8 9
;
proc print; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 08 Oct 2017 23:39:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402229#M97653</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-08T23:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS input format for one way ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402231#M97655</link>
      <description>&lt;P&gt;Thanks so much Warren! I spent the whole day could not make it. Thanks for the timely reply. It helped a lot&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2017 23:46:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402231#M97655</guid>
      <dc:creator>YueLSU</dc:creator>
      <dc:date>2017-10-08T23:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS input format for one way ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402235#M97657</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_glm_examples01.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_glm_examples01.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad I could help!&amp;nbsp; That method of reading data for modeling is in the documentation here and probably other places as well.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 00:17:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-input-format-for-one-way-ANOVA/m-p/402235#M97657</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-09T00:17:19Z</dc:date>
    </item>
  </channel>
</rss>

