-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Hi lars,
I wanted to implement your stata scanner without having to deploy stata, i.e. just read the source code and go through a list of keywords. is this a futile approach?
trying to understand whether this list here
replication-template-development/tools/Stata_scan_code/ado/auxiliary/signalcommands.txt
Line 1 in 7332c52
| Signals Package |
is what one would use to pick up stata commands which do not bear the name of their package.
suppose I get
ssc hot, n(1000)
Could I reasonably assume (yes there will some errors, but fine) that for the 1000-20 (files in that list) I can confront a user's code with my list of 980 patterns, and say if I match binscatter, I could claim that you are using the binscatter package (see net describe binscatter, from(http://fmwww.bc.edu/RePEc/bocode/b))
thanks!