Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: RE: SV: RE: SV: RE: SV: RE: postfile


From   Nick Cox <[email protected]>
To   "'[email protected]'" <[email protected]>
Subject   st: RE: SV: RE: SV: RE: SV: RE: postfile
Date   Fri, 27 Aug 2010 12:00:00 +0100

This works for me: 

. tempname myfile 

. postfile `myfile' time using postfiletest.dta , replace         
(note: file postfiletest.dta not found)
                                                 
. foreach i in 6 12 18 {                          
  2.         local  time  `i'        
  3.     post  `myfile'   (`time')     
  4.     }

. postclose `myfile'                              

. preserve

. use postfiletest, replace       

. list , noobs

  +------+
  | time |
  |------|
  |    6 |
  |   12 |
  |   18 |
  +------+

. restore

Nick 
[email protected] 

Tomas Lind

This works when I post the i (time-variable) so I suppose I am in the
vicinity of success (however I don´t understand why the full code doesn´t
work (error message r198 about the variable time).

clear
tempname  resul
postfile `resul'  time     using H:\Slask\slask2.dta , replace 	
						
foreach i in 6 12 18 {				
	local  time  `i'	
    post  `resul'   (`time')     
    }
postclose `resul'					

preserve
use H:\Slask\slask2.dta 	, replace	
list , noobs
restore

Nick Cox

I imagine that you need to look more carefully at the variable in question. 

Tomas Lind

I get the following error message (note, the variable time in my example
corresponds to the variable fönster in my real syntax so the error message
is about the variable fönster)



saba_L6

                                                         -- Binomial Exact
--
    Variable |        Obs        Mean    Std. Err.       [95% Conf.
Interval]
-------------+--------------------------------------------------------------
-
     saba_L6 |       3366    .0356506    .0031959        .0296445
.0424797



invalid syntax
post:  above message corresponds to expression 2, variable fönster
r(198);

end of do-file

r(198);


*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index