/usr/share/gretl/scripts/misc/kmenta.inp is in gretl-common 2016a-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Replication of illustrative system of equations from
# J. Kmenta, "Elements of Econometrics", 2e, (University
# of Michigan Press, 1986).
#
# The two endogenous variables were artificially generated
# by Kmenta. The other variables are taken from a study by
# Girschik and Haavelmo (Econometrica, 1947)
open kmenta.gdt
Kmenta <- system
equation Q 0 P D
equation Q 0 P F A
endog Q P
end system
estimate Kmenta method=ols
estimate Kmenta method=tsls
estimate Kmenta method=liml
estimate Kmenta method=3sls
estimate Kmenta method=3sls --iterate
estimate Kmenta method=fiml --verbose
|