hello
In the following st_store, wondering if there is a better way to refer to the variables (such as through varlist a*) , instead of listing each one individually in a cumbersome way..
Thanks!
In the following st_store, wondering if there is a better way to refer to the variables (such as through varlist a*) , instead of listing each one individually in a cumbersome way..
Code:
clear set obs 10 mata var = ("a1", "b2", "a3", "b4", "a5") st_addvar(("float"), var) st_store(.,("a1", "a3", "a5"),J(10,3,1)) // end
Thanks!
Comment