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: Calling a ML program in an ado file


From   Valerie Orozco <[email protected]>
To   "[email protected]" <[email protected]>
Subject   st: Calling a ML program in an ado file
Date   Mon, 12 Jul 2010 10:30:12 +0000

Hi,

I would like to create some ado-files in order to replicate some estimations on several data.
I have some problems calling ml program in my ado (they are not known).

Let's take a small example : 

/*----------------------------- begin Example.ado-----------------------------*/
program Example
    version 11.1
    args varY X1 X2
    use http://www.stata-press.com/data/r11/auto
    
    di "Call myprobit"
    ml model lf myprobit (`varY' = `X1'  `X2')
    ml maximize
end

program myprobit
    version 11
    args lnf theta1
    quietly replace `lnf' = ln(normal(`theta1')) if $ML_y1==1
    quietly replace `lnf' = ln(normal(-`theta1')) if $ML_y1==0
end
/*----------------------------- end Example.ado-----------------------------*/

Running the ado "Example" gives the following message : 


. Example foreign mpg weight
(1978 Automobile Data)
Call myprobit
unrecognized command:   myprobit
r(199);"

I don't understand why the program "myprobit", written in the ado file, remains unknown...
What is my mistake???
Thanks a lot.

valérie


-------------------------------
Valérie OROZCO
Toulouse School of Economics (INRA-GREMAQ)
21, allée de Brienne
F-31000 Toulouse, France

MA 101
+33 5 61 12 85 91
-------------------------------


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