Home  /  Resources & support  /  Users Group meetings  /  1999 UK Stata Users Group meeting  /  Writing extensions to predict

Writing extensions to predict

  • e(predict) sets the command predict will use after an estimation command
            program define mycmd6, eclass
                ...
                estimates local predict "mycmd6_p"
                ...
            end
    
  • _predict is called by default, which is really the predict command from Stata 5
  • _pred_se is an undocumented command to aid in programming single-equation extensions to predict