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: How to get a list of the names of characters associated with a variable


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   st: RE: How to get a list of the names of characters associated with a variable
Date   Thu, 4 Mar 2010 20:44:57 -0000

Perhaps you mean characteristics. See -help extended_fcn-. 

Nick 
[email protected] 

Clyde Schechter MA, MD 

I'm trying to write an ado file that will generalize the -lookfor-
command
so that it also searches for the target text in characters associated
with
variables.  (I need this because I have a data set with a large number
of
variables, and the key information is often found not in the label
[which
was truncated at 80 characters], but in a character--and the characters
are not consistently named.)

So my basic idea is:

foreach v of varlist _all {
     get a list of all characters associated with `v' in a local
char_list
     foreach c of local char_list {
          if index("`:char `v'[`c']'", "`target_string'") > 0 {
               found it -- generate suitable output
          }
     }
}

But I haven't found a way to get a list of all characters associated
with
`v'.  I can display them all with - char list `v'[] -, but that doesn't
return anything.

Anyone have any ideas about this, or an alternative way for me to
generalize -lookfor-?  Thanks in advance for any help.


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