<?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: Do loop in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356269#M83527</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I would like to save all the parameter estimates from each sample to a vector or list, is that possible?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2017 08:34:52 GMT</pubDate>
    <dc:creator>gretaolsson</dc:creator>
    <dc:date>2017-05-05T08:34:52Z</dc:date>
    <item>
      <title>Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355547#M83268</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have a CSV file containing 100 samples a 10 observations each. How do I perform logistic regression on each individual sample from the one csv-file? How do I extract the values ​​I'm interested in to a vector, such as estimatates and p-values?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc logistic data = WORK.IMPORT;&lt;BR /&gt;class x y;&lt;BR /&gt;model y = x;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is an extract from the CSV-file:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"","num","y","x"&lt;BR /&gt;"1",1,1,0&lt;BR /&gt;"2",1,1,1&lt;BR /&gt;"3",1,1,1&lt;BR /&gt;"4",1,1,1&lt;BR /&gt;"5",1,1,0&lt;BR /&gt;"6",1,1,0&lt;BR /&gt;"7",1,1,1&lt;BR /&gt;"8",1,1,1&lt;BR /&gt;"9",1,1,1&lt;BR /&gt;"10",1,1,1&lt;BR /&gt;"11",1,1,1&lt;BR /&gt;"12",1,1,1&lt;BR /&gt;"13",1,1,0&lt;BR /&gt;"14",1,0,0&lt;BR /&gt;"15",1,1,0&lt;BR /&gt;"16",1,1,0&lt;BR /&gt;"17",1,1,0&lt;BR /&gt;"18",1,1,1&lt;BR /&gt;"19",1,1,1&lt;BR /&gt;"20",1,1,0&lt;BR /&gt;"21",1,0,0&lt;BR /&gt;"22",1,1,1&lt;BR /&gt;"23",1,0,0&lt;BR /&gt;"24",1,1,1&lt;BR /&gt;"25",1,1,1&lt;BR /&gt;"26",1,1,1&lt;BR /&gt;"27",1,1,0&lt;BR /&gt;"28",1,1,1&lt;BR /&gt;"29",1,0,0&lt;BR /&gt;"30",1,1,0&lt;BR /&gt;"31",1,1,1&lt;BR /&gt;"32",1,1,0&lt;BR /&gt;"33",1,1,1&lt;BR /&gt;"34",1,1,0&lt;BR /&gt;"35",1,0,0&lt;BR /&gt;"36",1,1,0&lt;BR /&gt;"37",1,1,0&lt;BR /&gt;"38",1,0,1&lt;BR /&gt;"39",1,1,1&lt;BR /&gt;"40",1,1,1&lt;BR /&gt;"41",1,1,0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Grateful for all the help I can get!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 12:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355547#M83268</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-03T12:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355550#M83270</link>
      <description>&lt;P&gt;What variable indicates which sample the observation belongs to? Not sure this is the answer you are looking for, but I think you want to use the by statement in your PROC LOGISTIC as described here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_logistic_sect005.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_logistic_sect005.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 12:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355550#M83270</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-05-03T12:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355552#M83271</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138030"&gt;@gretaolsson&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;Hello, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have a CSV file containing 100 samples a 10 observations each. How do I perform logistic regression on each individual sample from the one csv-file? How do I extract the values ​​I'm interested in to a vector, such as estimatates and p-values?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc logistic data = WORK.IMPORT;&lt;BR /&gt;class x y;&lt;BR /&gt;model y = x;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here is an extract from the CSV-file:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"","num","y","x"&lt;BR /&gt;"1",1,1,0&lt;BR /&gt;"2",1,1,1&lt;BR /&gt;"3",1,1,1&lt;BR /&gt;"4",1,1,1&lt;BR /&gt;"5",1,1,0&lt;BR /&gt;"6",1,1,0&lt;BR /&gt;"7",1,1,1&lt;BR /&gt;"8",1,1,1&lt;BR /&gt;"9",1,1,1&lt;BR /&gt;"10",1,1,1&lt;BR /&gt;"11",1,1,1&lt;BR /&gt;"12",1,1,1&lt;BR /&gt;"13",1,1,0&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Grateful for all the help I can get!&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You haven't told us what "an individual sample" is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, it appears that both x and y are binary 0/1 variables in which case a logistic regression isn't appropriate, something like a contingency table might be a better choice.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 12:34:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355552#M83271</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-05-03T12:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355553#M83272</link>
      <description>&lt;P&gt;Not sure on the specifics of logistic, but as a general rule in SAS, when you want to do a datastep or a procedure over a certain group, you would use a by statement. &amp;nbsp;So maybe something along the lines of:&lt;/P&gt;
&lt;PRE&gt;proc logistic data=work.import;
  by sampleid;
  class x y;
  model y = x;
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 May 2017 12:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355553#M83272</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-03T12:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355931#M83398</link>
      <description>&lt;P&gt;&lt;SPAN&gt;How does SAS know how many observations it is in each sample? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This did not work for me ....&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 11:53:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355931#M83398</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-04T11:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355934#M83400</link>
      <description>&lt;P&gt;This is an outstanding question from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;which you haven't answered yet. &amp;nbsp;You have not told us the full picture, what is sample - its not shown in any of the post? &amp;nbsp;My code is an example of what you would do if you have a variable for it, if you don't&amp;nbsp;&lt;STRONG&gt;how&lt;/STRONG&gt; do you know what sample is?&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 11:58:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355934#M83400</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-04T11:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355936#M83401</link>
      <description>&lt;P&gt;Okay, I did not really catch any question, sorry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a CSV file containing 100 samples.&lt;BR /&gt;Each sample consists of 10 observations. (So overall I have 1000 observations in one file.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I now want to let SAS read the CSV file and perform logistic regression on the first sample, which is observation "1" to "10" in the CSV-file, then I want SAS to perform logistic regression on the second sample, &lt;SPAN&gt;w&lt;/SPAN&gt;&lt;SPAN&gt;hich is observation "11" to "20" in the CSV-file,&amp;nbsp;&lt;/SPAN&gt;and so on and on.&lt;BR /&gt;Above I have sent an excerpt on how the data looks in the CSV file. "1" - "10" is the first sample,&lt;BR /&gt;"11" - "20" is the second sample, ...., "91" - "100" is the tenth sample and so on up to the hundred sample.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have any more questions that you need&amp;nbsp;answered, please let me know.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 12:18:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355936#M83401</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-04T12:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355952#M83410</link>
      <description>&lt;P&gt;Right, so your steps are:&lt;/P&gt;
&lt;P&gt;1) read in the data - you should already have this.&lt;/P&gt;
&lt;P&gt;2) Assign sample id to blocks of 10 records:&lt;/P&gt;
&lt;PRE&gt;data want;
  set have;
  sampleid=ceil(_n_/10);  /* Assign sampleid as record blocks of 10 */  
run;&lt;/PRE&gt;
&lt;P&gt;3) Run logistic with by group:&lt;/P&gt;
&lt;PRE&gt;proc logistic data=want;
  by sampleid;
  class x y;
  model y = x;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 May 2017 13:02:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/355952#M83410</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-04T13:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356105#M83461</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This was really helpful, thankyou!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have some questions, I think Im missing something obvious.&amp;nbsp;&lt;BR /&gt;Now I have the following code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PROC IMPORT OUT = filename
FILE = "/folders/myshortcuts/sf_myfolder/filename.csv"
DBMS = CSV
REPLACE;
RUN;&lt;BR /&gt;
data want;
set have;
sampleid=ceil(_n_/10); /* Assign sampleid as record blocks of 10 */ 
run;&lt;BR /&gt;
proc logistic data=want;
by sampleid;
class x y;
model y = x;
run;&lt;/PRE&gt;&lt;P&gt;Of course, this does not work and my log looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasNote"&gt;NOTE: WORK.FILENAME data set was successfully created.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.FILENAME has 100 observations and 4 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.06 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.04 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 data want;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 set have;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;FONT color="#FF0000"&gt;ERROR: File WORK.HAVE.DATA does not exist.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 sampleid=ceil(_n_/10); /* Assign sampleid as record blocks of 10 */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.WANT may be incomplete. When this step was stopped there were 0 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;FONT color="#FF0000"&gt;ERROR: Variable X not found.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;FONT color="#FF0000"&gt;ERROR: Variable Y not found.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101 proc logistic data=want;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;102 by sampleid;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;103 class x y;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;104 model y = x;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;105 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;106&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;107 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;120&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;BR /&gt;&lt;STRONG&gt;I thought I would replace "want" with "filename", but it did not work. How should I do?&lt;/STRONG&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 04 May 2017 20:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356105#M83461</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-04T20:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356133#M83475</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I changed the code and now it works!&amp;nbsp;T&lt;SPAN&gt;hank you very much!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PROC IMPORT OUT = filename
          FILE = "/folders/myshortcuts/sf_myfolder/filename.csv"
          DBMS = CSV
          REPLACE;
RUN;

data want;
  set filename;
  sampleid=ceil(_n_/10);  /* Assign sampleid as record blocks of 10 */  
run;

proc logistic data=want;
  by sampleid;
  class x y;
  model y = x;
run;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Is it possible to extract specific values (estimates and p-values) ​​from the result of each regression and put them together into a vector or something similar?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 21:00:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356133#M83475</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-04T21:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356267#M83525</link>
      <description>&lt;P&gt;Firstly, avoid using "filename" as a dataset name. &amp;nbsp;And do please avoid coding in capitals. &amp;nbsp;You can extract certain parts of teh data in various ways. &amp;nbsp;In the example you get a dataset which can be filtered and further processed via datastep syntax. &amp;nbsp;Or you may also get parts of an output by doing:&lt;/P&gt;
&lt;P&gt;ods trace on;&lt;/P&gt;
&lt;P&gt;--your code--&lt;/P&gt;
&lt;P&gt;ods trace off;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then in the log you will see all the component parts which are created by the procedure, you can then rerun your code (removing the ods trace parts as they are just to find out the names):&lt;/P&gt;
&lt;P&gt;ods select &amp;lt;object&amp;gt;=&amp;lt;dataset to store&amp;gt;;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 08:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356267#M83525</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-05T08:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356268#M83526</link>
      <description>&lt;P&gt;&lt;SPAN&gt;What do you mean with&amp;nbsp;&amp;lt;dataset to store&amp;gt;? &amp;nbsp;&lt;BR /&gt;Should I create a new file where I can save, for example, estimates? How do I do that then?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 08:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356268#M83526</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-05T08:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356269#M83527</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I would like to save all the parameter estimates from each sample to a vector or list, is that possible?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 08:34:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356269#M83527</guid>
      <dc:creator>gretaolsson</dc:creator>
      <dc:date>2017-05-05T08:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Do loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356278#M83529</link>
      <description>&lt;P&gt;What does the ods trace show in the log, is the output name called ParameterEstimates, if so the syntax would be:&lt;/P&gt;
&lt;P&gt;ods output ParameterEstimates=estim;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will create a dataset in work called estim, with the parameter estimates.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 08:57:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-loop/m-p/356278#M83529</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-05T08:57:51Z</dc:date>
    </item>
  </channel>
</rss>

