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: egen rowmin but not value but variable name


From   Nick Cox <[email protected]>
To   [email protected]
Subject   Re: st: egen rowmin but not value but variable name
Date   Mon, 13 Aug 2012 12:19:26 +0100

There is an extended review of working rowwise at

SJ-9-1  pr0046  . . . . . . . . . . . . . . . . . . .  Speaking Stata: Rowwise
        (help rowsort, rowranks if installed) . . . . . . . . . . .  N. J. Cox
        Q1/09   SJ 9(1):137--157
        shows how to exploit functions, egen functions, and Mata
        for working rowwise; rowsort and rowranks are introduced

which is accessible to all as a .pdf under the Stata Journal's 3 year window.

Nick

On Mon, Aug 13, 2012 at 12:16 PM, Trelle Sven <[email protected]> wrote:
> Thanks Nick, it works fine for me!
> Sven
>
> p.s. Thread closed from my side.
>
>
> -----Original Message-----
> From: [email protected]
> [mailto:[email protected]] On Behalf Of Nick Cox
> Sent: Montag, 13. August 2012 13:03
> To: [email protected]
> Subject: Re: st: egen rowmin but not value but variable name
>
> Ties can be tracked like this
>
> sysuse auto, clear
>
> gen which_min = "price"
> gen min = price
>
> qui foreach v of var mpg-gear_ratio {
>       replace which_min = "`v'" if `v' < min
>       replace which_min = which_min + " `v'" if `v' == min
>       replace min = `v' if `v' < min
> }
>
> subject to a constraint of 244 characters on the variable holding
> variable names.
>
> On Mon, Aug 13, 2012 at 11:57 AM, Phil Clayton
> <[email protected]> wrote:
>> You may also need to consider what to do about ties.
>>
>> Phil
>>
>> On 13/08/2012, at 8:53 PM, Nick Cox wrote:
>>
>>> Dopey example. Which is minimum of price-gear_ratio in auto data?
>>>
>>> sysuse auto, clear
>>>
>>> gen which_min = "price"
>>> gen min = price
>>>
>>> qui foreach v of var mpg-gear_ratio {
>>>      replace which_min = "`v'" if `v' < min
>>>       replace min = `v' if `v' < min
>>> }
>>>
>>> Nick
>>>
>>> On Mon, Aug 13, 2012 at 11:32 AM, Trelle Sven <[email protected]>
> wrote:
>>>
>>>> it might sound trivial but I was not able to find something in the
>>>> egen or extended macro function help:
>>>>
>>>> I want to create a new variable that contains the variable name that
>
>>>> holds the minimum value over several other variables per row i.e.
>>>> something like the "egen x= rowmin(y z w)" command but the created
>>>> variable should not contain the row minimum but the variable name
>>>> that contains this minimum.
*
*   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