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: SV: RE: SV: RE: RE: Sequence of numbers


From   "Tomas Lind" <[email protected]>
To   <[email protected]>
Subject   st: SV: RE: SV: RE: RE: Sequence of numbers
Date   Sun, 7 Mar 2010 16:54:30 +0100

Now I got stuck again when trying to merge my sequence variable to the
original dataset

"original dataset"
count
scalar number = r(N)


clear*
set obs  number
egen float myseq = fill(1 2 3 1 2 3)


Am I not allowed to use the scalar number together with -set obs-

/Tomas




-----Ursprungligt meddelande-----
Från: [email protected]
[mailto:[email protected]] För Martin Weiss
Skickat: den 7 mars 2010 16:39
Till: [email protected]
Ämne: st: RE: SV: RE: RE: Sequence of numbers


<>


" I didn´t understand how to make it
repeat itself."



Welcome to the club:
http://www.stata.com/statalist/archive/2009-04/msg00805.html


BTW, your original -expand- idea is probably more cumbersome than the
alternatives shown:

****
clear*
set obs 3
gen byte seq=_n
gen byte cl=1
expandcl 10, cluster(cl) generate(newcl)
sort newcl seq
drop cl newcl
l
****



HTH
Martin


-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Tomas Lind
Sent: Sonntag, 7. März 2010 16:33
To: [email protected]
Subject: st: SV: RE: RE: Sequence of numbers

Oh, thanks again. I tried -fill- but I didn´t understand how to make it
repeat itself.

:) Tomas



-----Ursprungligt meddelande-----
Från: [email protected]
[mailto:[email protected]] För Martin Weiss
Skickat: den 7 mars 2010 16:30
Till: [email protected]
Ämne: st: RE: RE: Sequence of numbers


<>

-egen, fill()- would have taken you there as well:


*******
clear*
set obs 99
egen float myseq = fill(1 2 3 1 2 3)
l
*******


HTH
Martin


-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Martin Weiss
Sent: Sonntag, 7. März 2010 16:26
To: [email protected]
Subject: st: RE: Sequence of numbers


<>

*******
clear*
set obs 99
egen byte myseq = seq(), from(1) to(3) block(1)
l
*******


HTH
Martin

-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Tomas Lind
Sent: Sonntag, 7. März 2010 16:23
To: [email protected]
Subject: st: Sequence of numbers

Dear Listers,

Is it possible to generate a variable with a sequence of numbers that
repeats itself, for example 1, 2, 3, 1, 2, 3, 1, 2, 3.

I tried -egen fill- but that didn´t work. Another solution would be to make
a new dataset with tree lines with the values 1, 2, 3 and use -expand- and
finally merge that together with the first dataset. However it would be nice
if someone had a simple solution of how to do it within the dataset.

/Tomas


*
*   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/


*
*   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/


*
*   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/


*
*   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/


*
*   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/


*
*   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