This file is indexed.

/usr/share/gretl/scripts/ps10-10.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
# PS10.10 for Example 10.8 
open data10-1
# subtract the mean from each observation
genr R = r - mean(r)
genr m = M - mean(M)
# generate quarterly lags
lags R m
genr R_5 = R(-5)
genr R_6 = R(-6)
genr m_5 = m(-5)
genr m_6 = m(-6)
list
# supress the first six observations
smpl 1965.3 1991.2
# estimate the model for interest Rate 
ols R R_1 R_2 R_3 R_4 R_5 R_6 m_1 m_2 m_3 m_4 m_5 m_6
# omit the money supply variables - note the Wald F value at the end 
omit m_1 m_2 m_3 m_4 m_5 m_6
# estimate the model for money supply 
ols m m_1 m_2 m_3 m_4 m_5 m_6 R_1 R_2 R_3 R_4 R_5 R_6
# omit the interest Rate variables - Wald F value is at the end 
omit R_1 R_2 R_3 R_4 R_5 R_6