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]

Re: st: RE: How to append observations to variable


From   Maarten Buis <[email protected]>
To   [email protected]
Subject   Re: st: RE: How to append observations to variable
Date   Thu, 27 Sep 2012 14:28:44 +0200

On Thu, Sep 27, 2012 at 2:17 PM, Beatrice Benavidez wrote:
> I have a variable x where its last observation (i.e. the last row of
> the dataset) is at row 626.
>
> I would like to append to the bottom of that where I have '0' as my
> observation in row 627, '1' as my observation in 628, '2' as my
> observation in 269 etc until '100' as observation in row 728.

* ------------- begin example ----------------
sysuse auto,clear
local oldN = _N
local newN = _N + 101
set obs `newN'
replace mpg = _n - `oldN' - 1 in `=`oldN'+1'/l
* -------------- end example -----------------
(For more on examples I sent to the Statalist see:
http://www.maartenbuis.nl/example_faq )

Hope this helps,
Maarten

---------------------------------
Maarten L. Buis
WZB
Reichpietschufer 50
10785 Berlin
Germany

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


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