Title | Stata 6: Using the post command | |
Author | William Gould, StataCorp |
The syntax of post is
post postname exp exp ... exp
Remember the way this works: you first open a postfile using the postfile command, then issue one or more post commands, and finally close the file using postclose.
postfile postname varlist using filename, [double every(#) replace ] post postname exp exp ... exp postclose postname
If we had it to do over again, the syntax of post would be
post postname (exp) (exp) ... (exp)
Note the parentheses around the expressions. We recommend you pretend those parentheses are required and type them. Here’s why:
. postfile myfile a b using myres.dta . post myfile (3) (-2) <-- this works . post myfile 3 -2 <-- yet this does not! invalid syntax r(198);
Why does “post myfile 3 -2” not work? Because post assumes its arguments are expressions and spaces are not significant in expressions. post sees “3 -2”, and that is the same as seeing “3-2” — it looks like an expression that evaluates to 1.
You typed “post myfile 3 -2”, but that is the same as
. post myfile 3-2
which is the same as
. post myfile 1
and that is too few expressions. Since you specified two variables in the opening postfile, post now expects two expressions but found only one!
Understand that had you typed
. post myfile 3 1-3
post would have understood you because it could see where one expression ended and the next began; but “3 -2” could just be “3-2”, which is to say, an expression that evaluates to 1.
The solution is to type parentheses around post’s arguments, and it will not hurt to do so even when it is unnecessary:
. post myfile (3) (-2) . post myfile (3) (1-3)
You especially need to do this when the arguments to post are macros because macros are substituted. The following program works:
program define demo tempname filesav postfile `filesav' pr Sp using results.dta, replace local Sp = -1 local pr = -1 post `filesav' (`pr') (`Sp') postclose `filesav' end
Change the
post `filesav' (`pr') (`Sp')
to
post `filesav' `pr' `Sp'
and the program stops working.
Learn
Free webinars
NetCourses
Classroom and web training
Organizational training
Video tutorials
Third-party courses
Web resources
Teaching with Stata
© Copyright 1996–2024 StataCorp LLC. All rights reserved.
×
We use cookies to ensure that we give you the best experience on our website—to enhance site navigation, to analyze usage, and to assist in our marketing efforts. By continuing to use our site, you consent to the storing of cookies on your device and agree to delivery of content, including web fonts and JavaScript, from third party web services.
Cookie Settings
Last updated: 16 November 2022
StataCorp LLC (StataCorp) strives to provide our users with exceptional products and services. To do so, we must collect personal information from you. This information is necessary to conduct business with our existing and potential customers. We collect and use this information only where we may legally do so. This policy explains what personal information we collect, how we use it, and what rights you have to that information.
These cookies are essential for our website to function and do not store any personally identifiable information. These cookies cannot be disabled.
This website uses cookies to provide you with a better user experience. A cookie is a small piece of data our website stores on a site visitor's hard drive and accesses each time you visit so we can improve your access to our site, better understand how you use our site, and serve you content that may be of interest to you. For instance, we store a cookie when you log in to our shopping cart so that we can maintain your shopping cart should you not complete checkout. These cookies do not directly store your personal information, but they do support the ability to uniquely identify your internet browser and device.
Please note: Clearing your browser cookies at any time will undo preferences saved here. The option selected here will apply only to the device you are currently using.