File: gretl_cli_cmdref.en

package info (click to toggle)
gretl 2022c-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 59,552 kB
  • sloc: ansic: 409,074; sh: 4,449; makefile: 3,222; cpp: 2,777; xml: 599; perl: 364
file content (6878 lines) | stat: -rw-r--r-- 307,130 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
headings 10
Tests 24
add
adf
bds
bkw
chow
coeffsum
coint
cusum
difftest
johansen
kpss
leverage
levinlin
meantest
modtest
normtest
omit
panspec
qlrtest
reset
restrict
runs
vartest
vif
Graphs 10
boxplot
gnuplot
graphpg
hfplot
panplot
plot
qqplot
rmplot
scatters
textplot
Statistics 14
anova
corr
corrgm
fractint
freq
hurst
mahal
pca
pergm
pvalue
spearman
summary
xcorrgm
xtab
Dataset 18
append
data
dataset
delete
genr
info
join
labels
markers
nulldata
open
rename
setinfo
setmiss
setobs
smpl
store
varlist
Estimation 34
ar
ar1
arch
arima
arma
biprobit
dpanel
duration
equation
estimate
garch
gmm
heckit
hsk
intreg
lad
logistic
logit
midasreg
mle
mpols
negbin
nls
ols
panel
poisson
probit
quantreg
system
tobit
tsls
var
vecm
wls
Programming 21
break
catch
clear
continue
elif
else
end
endif
endloop
flush
foreign
funcerr
function
if
include
loop
makepkg
mpi
run
set
setopt
Transformations 10
diff
discrete
dummify
lags
ldiff
logs
orthdev
sdiff
square
stdize
Utilities 6
eval
help
modeltab
pkg
quit
shell
Printing 7
eqnprint
modprint
outfile
print
printf
sprintf
tabprint
Prediction 1
fcast

# add Tests

Argument:   varlist 
Options:    --lm (do an LM test, OLS only)
            --quiet (print only the basic test result)
            --silent (don't print anything)
            --vcv (print covariance matrix for augmented model)
            --both (IV estimation only, see below)
Examples:   add 5 7 9
            add xx yy zz --quiet

Must be invoked after an estimation command. Performs a joint test for the
addition of the specified variables to the last model, the results of which
may be retrieved using the accessors "$test" and "$pvalue".

By default an augmented version of the original model is estimated,
including the variables in varlist. The test is a Wald test on the augmented
model, which replaces the original as the "current model" for the purposes
of, for example, retrieving the residuals as $uhat or doing further tests.

Alternatively, given the --lm option (available only for the models
estimated via OLS), an LM test is performed. An auxiliary regression is run
in which the dependent variable is the residual from the last model and the
independent variables are those from the last model plus varlist. Under the
null hypothesis that the added variables have no additional explanatory
power, the sample size times the unadjusted R-squared from this regression
is distributed as chi-square with degrees of freedom equal to the number of
added regressors. In this case the original model is not replaced.

The --both option is specific to two-stage least squares: it specifies that
the new variables should be added both to the list of regressors and the
list of instruments, the default in this case being to add to the regressors
only.

Menu path:    Model window, /Tests/Add variables

# adf Tests

Arguments:  order varlist 
Options:    --nc (test without a constant)
            --c (with constant only)
            --ct (with constant and trend)
            --ctt (with constant, trend and trend squared)
            --seasonals (include seasonal dummy variables)
            --gls (de-mean or de-trend using GLS)
            --verbose (print regression results)
            --quiet (suppress printing of results)
            --difference (use first difference of variable)
            --test-down[=criterion] (automatic lag order)
            --perron-qu (see below)
Examples:   adf 0 y
            adf 2 y --nc --c --ct
            adf 12 y --c --test-down
            See also jgm-1996.inp

The options shown above and the discussion which follows mostly pertain to
the use of the adf command with regular time series data. For use of this
command with panel data please see the section titled "Panel data" below.

This command computes a set of Dickey-Fuller tests on each of the listed
variables, the null hypothesis being that the variable in question has a
unit root. (But if the --difference flag is given, the first difference of
the variable is taken prior to testing, and the discussion below must be
taken as referring to the transformed variable.)

By default, two variants of the test are shown: one based on a regression
containing a constant and one using a constant and linear trend. You can
control the variants that are presented by specifying one or more of the
option flags --nc, --c, --ct, --ctt.

The --gls option can be used in conjunction with one or other of the flags
--c and --ct. The effect of this option is that the series to be tested is
demeaned or detrended using the GLS procedure proposed by Elliott,
Rothenberg and Stock (1996), which gives a test of greater power than the
standard Dickey-Fuller approach. This option is not compatible with --nc,
--ctt or --seasonals.

In all cases the dependent variable in the test regression is the first
difference of the specified series, y, and the key independent variable is
the first lag of y. The regression is constructed such that the coefficient
on lagged y equals the root in question, α, minus 1. For example, the model
with a constant may be written as

  (1 - L)y(t) = b0 + (a-1)y(t-1) + e(t)

Under the null hypothesis of a unit root the coefficient on lagged y equals
zero. Under the alternative that y is stationary this coefficient is
negative. So the test is inherently one-sided.

Selecting the lag order

The simplest version of the Dickey-Fuller test assumes that the error term
in the test regression is serially uncorrelated. In practice this is
unlikely to be the case and the specification is often extended by including
one or more lags of the dependent variable, giving an Augmented
Dickey-Fuller (ADF) test. The order argument governs the number of such
lags, k, possibly depending on the sample size, T.

  For a fixed, user-specified k: give a non-negative value for order.

  For T-dependent k: give order as -1. The order is then set following the
  recommendation of Schwert (1989), namely the integer part of
  12(T/100)^0.25.

In general, however, we don't know how many lags will be required to
"whiten" the Dickey-Fuller residual. It's therefore common to specify the
maximum value of k and let the data decide the actual number of lags to
include. This can be done via the --test-down option. The criterion for
selecting optimal k may be set using the parameter to this option, which
should be one of AIC, BIC or tstat, AIC being the default.

When testing down via AIC or BIC, the final lag order for the ADF equation
is that which optimizes the chosen information criterion (Akaike or Schwarz
Bayesian). The exact procedure depends on whether or not the --gls option is
given. When GLS is specified, AIC and BIC are the "modified" versions
described in Ng and Perron (2001), otherwise they are the standard versions.
In the GLS case a refinement is available. If the additional option
--perron-qu is given, lag-order selection is performed via the revised
method recommended by Perron and Qu (2007). In this case the data are first
demeaned or detrended via OLS; GLS is applied once the lag order is
determined.

When testing down via the t-statistic method is called for, the procedure is
as follows:

1. Estimate the Dickey-Fuller regression with k lags of the dependent
   variable.

2. Is the last lag significant? If so, execute the test with lag order k.
   Otherwise, let k = k - 1; if k equals 0, execute the test with lag order
   0, else go to step 1.

In the context of step 2 above, "significant" means that the t-statistic for
the last lag has an asymptotic two-sided p-value, against the normal
distribution, of 0.10 or less.

To sum up, if we accept the various arguments of Perron, Ng, Qu and Schwert
referenced above, the favored command for testing a series y is likely to
be:

	adf -1 y --c --gls --test-down --perron-qu

(Or substitute --ct for --c if the series seems to display a trend.) The lag
order for the test will then be determined by testing down via modified AIC
from the Schwert maximum, with the Perron-Qu refinement.

P-values for the Dickey-Fuller tests are based on response-surface
estimates. When GLS is not applied these are taken from MacKinnon (1996).
Otherwise they are taken from Cottrell (2015) or, when testing down is
performed, Sephton (2021). The P-values are specific to the sample size
unless they are labeled as asymptotic.

Panel data

When the adf command is used with panel data, to produce a panel unit root
test, the applicable options and the results shown are somewhat different.

First, while you may give a list of variables for testing in the regular
time-series case, with panel data only one variable may be tested per
command. Second, the options governing the inclusion of deterministic terms
become mutually exclusive: you must choose between no-constant, constant
only, and constant plus trend; the default is constant only. In addition,
the --seasonals option is not available. Third, the --verbose option has a
different meaning: it produces a brief account of the test for each
individual time series (the default being to show only the overall result).

The overall test (null hypothesis: the series in question has a unit root
for all the panel units) is calculated in one or both of two ways: using the
method of Im, Pesaran and Shin (Journal of Econometrics, 2003) or that of
Choi (Journal of International Money and Finance, 2001). The Choi test
requires that P-values are available for the individual tests; if this is
not the case (depending on the options selected) it is omitted. The
particular statistic given for the Im, Pesaran, Shin test varies as follows:
if the lag order for the test is non-zero their W statistic is shown;
otherwise if the time-series lengths differ by individual, their Z
statistic; otherwise their t-bar statistic. See also the "levinlin" command.

Menu path:    /Variable/Unit root tests/Augmented Dickey-Fuller test

# anova Statistics

Arguments:  response treatment [ block ] 
Option:     --quiet (don't print results)

Analysis of Variance: response is a series measuring some effect of interest
and treatment must be a discrete variable that codes for two or more types
of treatment (or non-treatment). For two-way ANOVA, the block variable
(which should also be discrete) codes for the values of some control
variable.

Unless the --quiet option is given, this command prints a table showing the
sums of squares and mean squares along with an F-test. The F-test and its
p-value can be retrieved using the accessors "$test" and "$pvalue"
respectively.

The null hypothesis for the F-test is that the mean response is invariant
with respect to the treatment type, or in words that the treatment has no
effect. Strictly speaking, the test is valid only if the variance of the
response is the same for all treatment types.

Note that the results shown by this command are in fact a subset of the
information given by the following procedure, which is easily implemented in
gretl. Create a set of dummy variables coding for all but one of the
treatment types. For two-way ANOVA, in addition create a set of dummies
coding for all but one of the "blocks". Then regress response on a constant
and the dummies using "ols". For a one-way design the ANOVA table is printed
via the --anova option to ols. In the two-way case the relevant F-test is
found by using the "omit" command. For example (assuming y is the response,
xt codes for the treatment, and xb codes for blocks):

	# one-way
	list dxt = dummify(xt)
	ols y 0 dxt --anova
	# two-way
	list dxb = dummify(xb)
	ols y 0 dxt dxb
	# test joint significance of dxt
	omit dxt --quiet

Menu path:    /Model/Other linear models/ANOVA

# append Dataset

Argument:   filename 
Options:    --time-series (see below)
            --fixed-sample (see below)
            --update-overlap (see below)
            --quiet (don't print anything)
            See below for additional specialized options

Opens a data file and appends the content to the current dataset, if the new
data are compatible. The program will try to detect the format of the data
file (native, plain text, CSV, Gnumeric, Excel, etc.).

The appended data may take the form of either additional observations on
series already present in the dataset, and/or new series. In the case of
adding series, compatibility requires either (a) that the number of
observations for the new data equals that for the current data, or (b) that
the new data carries clear observation information so that gretl can work
out how to place the values.

One case that is not supported is where the new data start earlier and also
end later than the original data. To add new series in such a case you can
use the --fixed-sample option; this has the effect of suppressing the adding
of observations, and so restricting the operation to the addition of new
series.

A special feature is supported for appending to a panel dataset. Let n
denote the number of cross-sectional units in the panel, T denote the number
of time periods, and m denote the number of observations for the new data.
If m = n the new data are taken to be time-invariant, and are copied into
place for each time period. On the other hand, if m = T the data are treated
as non-varying across the panel units, and are copied into place for each
unit. If the panel is "square", and m equals both n and T, an ambiguity
arises. The default in this case is to treat the new data as time-invariant,
but you can force gretl to treat the new data as time series via the
--time-series option. (This option is ignored in all other cases.)

When a data file is selected for appending, there may be an area of overlap
with the existing dataset; that is, one or more series may have one or more
observations in common across the two sources. If the option
--update-overlap is given, the append operation will replace any overlapping
observations with the values from the selected data file, otherwise the
values currently in place will be unaffected.

The additional specialized options --sheet, --coloffset, --rowoffset and
--fixed-cols work in the same way as with "open"; see that command for
explanations.

See also "join" for more sophisticated handling of multiple data sources.

Menu path:    /File/Append data

# ar Estimation

Arguments:  lags ; depvar indepvars 
Options:    --vcv (print covariance matrix)
            --quiet (don't print parameter estimates)
Example:    ar 1 3 4 ; y 0 x1 x2 x3

Computes parameter estimates using the generalized Cochrane-Orcutt iterative
procedure; see Section 9.5 of Ramanathan (2002). Iteration is terminated
when successive error sums of squares do not differ by more than 0.005
percent or after 20 iterations.

"lags" is a list of lags in the residuals, terminated by a semicolon. In the
above example, the error term is specified as

  u(t) = rho(1)*u(t-1) + rho(3)*u(t-3) + rho(4)*u(t-4)

Menu path:    /Model/Univariate time series/AR Errors (GLS)

# ar1 Estimation

Arguments:  depvar indepvars 
Options:    --hilu (use Hildreth-Lu procedure)
            --pwe (use Prais-Winsten estimator)
            --vcv (print covariance matrix)
            --no-corc (do not fine-tune results with Cochrane-Orcutt)
            --loose (use looser convergence criterion)
            --quiet (don't print anything)
Examples:   ar1 1 0 2 4 6 7
            ar1 y 0 xlist --pwe
            ar1 y 0 xlist --hilu --no-corc

Computes feasible GLS estimates for a model in which the error term is
assumed to follow a first-order autoregressive process.

The default method is the Cochrane-Orcutt iterative procedure; see for
example section 9.4 of Ramanathan (2002). The criterion for convergence is
that successive estimates of the autocorrelation coefficient do not differ
by more than 1e-6, or if the --loose option is given, by more than 0.001. If
this is not achieved within 100 iterations an error is flagged.

If the --pwe option is given, the Prais-Winsten estimator is used. This
involves an iteration similar to Cochrane-Orcutt; the difference is that
while Cochrane-Orcutt discards the first observation, Prais-Winsten makes
use of it. See, for example, Chapter 13 of Greene (2000) for details.

If the --hilu option is given, the Hildreth-Lu search procedure is used. The
results are then fine-tuned using the Cochrane-Orcutt method, unless the
--no-corc flag is specified. The --no-corc option is ignored for estimators
other than Hildreth-Lu.

Menu path:    /Model/Univariate time series/AR Errors (GLS)

# arch Estimation

Arguments:  order depvar indepvars 
Option:     --quiet (don't print anything)
Example:    arch 4 y 0 x1 x2 x3

This command is retained at present for backward compatibility, but you are
better off using the maximum likelihood estimator offered by the "garch"
command; for a plain ARCH model, set the first GARCH parameter to 0.

Estimates the given model specification allowing for ARCH (Autoregressive
Conditional Heteroskedasticity). The model is first estimated via OLS, then
an auxiliary regression is run, in which the squared residual from the first
stage is regressed on its own lagged values. The final step is weighted
least squares estimation, using as weights the reciprocals of the fitted
error variances from the auxiliary regression. (If the predicted variance of
any observation in the auxiliary regression is not positive, then the
corresponding squared residual is used instead).

The alpha values displayed below the coefficients are the estimated
parameters of the ARCH process from the auxiliary regression.

See also "garch" and "modtest" (the --arch option).

# arima Estimation

Arguments:  p d q [ ; P D Q ] ; depvar [ indepvars ] 
Options:    --verbose (print details of iterations)
            --quiet (don't print out results)
            --vcv (print covariance matrix)
            --hessian (see below)
            --opg (see below)
            --nc (do not include a constant)
            --conditional (use conditional maximum likelihood)
            --x-12-arima (use X-12-ARIMA, or X13, for estimation)
            --lbfgs (use L-BFGS-B maximizer)
            --y-diff-only (ARIMAX special, see below)
Examples:   arima 1 0 2 ; y
            arima 2 0 2 ; y 0 x1 x2 --verbose
            arima 0 1 1 ; 0 1 1 ; y --nc
            See also armaloop.inp, bjg.inp

Note: arma is an acceptable alias for this command.

If no indepvars list is given, estimates a univariate ARIMA (Autoregressive,
Integrated, Moving Average) model. The values p, d and q represent the
autoregressive (AR) order, the differencing order, and the moving average
(MA) order respectively. These values may be given in numerical form, or as
the names of pre-existing scalar variables. A d value of 1, for instance,
means that the first difference of the dependent variable should be taken
before estimating the ARMA parameters.

If you wish to include only specific AR or MA lags in the model (as opposed
to all lags up to a given order) you can substitute for p and/or q either
(a) the name of a pre-defined matrix containing a set of integer values or
(b) an expression such as {1,4}; that is, a set of lags separated by commas
and enclosed in braces.

The optional integer values P, D and Q represent the seasonal AR order, the
order for seasonal differencing, and the seasonal MA order, respectively.
These are applicable only if the data have a frequency greater than 1 (for
example, quarterly or monthly data). These orders may be given in numerical
form or as scalar variables.

In the univariate case the default is to include an intercept in the model
but this can be suppressed with the --nc flag. If indepvars are added, the
model becomes ARMAX; in this case the constant should be included explicitly
if you want an intercept (as in the second example above).

An alternative form of syntax is available for this command: if you do not
want to apply differencing (either seasonal or non-seasonal), you may omit
the d and D fields altogether, rather than explicitly entering 0. In
addition, arma is a synonym or alias for arima. Thus for example the
following command is a valid way to specify an ARMA(2, 1) model:

	arma 2 1 ; y

The default is to use the "native" gretl ARMA functionality, with estimation
by exact ML; estimation via conditional ML is available as an option. (If
X-12-ARIMA is installed you have the option of using it instead of native
code. Note that the newer X13 works as a drop-in replacement in exactly the
same way.) For details regarding these options, please see chapter 31 of the
Gretl User's Guide.

When native exact ML code is used, estimated standard errors are by default
based on a numerical approximation to the (negative inverse of) the Hessian,
with a fallback to the outer product of the gradient (OPG) if calculation of
the numerical Hessian should fail. Two (mutually exclusive) option flags can
be used to force the issue: the --opg option forces use of the OPG method,
with no attempt to compute the Hessian, while the --hessian flag disables
the fallback to OPG. Note that failure of the numerical Hessian computation
is generally an indicator of a misspecified model.

The option --lbfgs is specific to estimation using native ARMA code and
exact ML: it calls for use of the "limited memory" L-BFGS-B algorithm in
place of the regular BFGS maximizer. This may help in some instances where
convergence is difficult to achieve.

The option --y-diff-only is specific to estimation of ARIMAX models (models
with a non-zero order of integration and including exogenous regressors),
and applies only when gretl's native exact ML is used. For such models the
default behavior is to difference both the dependent variable and the
regressors, but when this option is specified only the dependent variable is
differenced, the regressors remaining in level form.

The AIC value given in connection with ARIMA models is calculated according
to the definition used in X-12-ARIMA, namely

  AIC = -2L + 2k

where L is the log-likelihood and k is the total number of parameters
estimated. Note that X-12-ARIMA does not produce information criteria such
as AIC when estimation is by conditional ML.

The AR and MA roots shown in connection with ARMA estimation are based on
the following representation of an ARMA(p, q) process:

	(1 - a_1*L - a_2*L^2 - ... - a_p*L^p)Y =
          c + (1 + b_1*L + b_2*L^2 + ... + b_q*L^q) e_t

The AR roots are therefore the solutions to

         1 - a_1*z - a_2*z^2 - ... - a_p*L^p = 0

and stability requires that these roots lie outside the unit circle.

The "frequency" figure printed in connection with AR and MA roots is the
lambda value that solves z = r * exp(i*2*pi*lambda) where z is the root in
question and r is its modulus.

Menu path:    /Model/Univariate time series/ARIMA

# arma Estimation

See "arima"; arma is an alias.

# bds Tests

Arguments:  order x 
Options:    --corr1=rho (see below)
            --sdcrit=multiple (see below)
            --boot=N (see below)
            --matrix=m (use matrix input)
            --quiet (suppress printing of results)
Examples:   bds 5 x
            bds 3 --matrix=m
            bds 4 --sdcrit=2.0

Performs the BDS (Brock, Dechert, Scheinkman and LeBaron, 1996) test for
nonlinearity of the series x. In an econometric context this is typically
used to test a regression residual for violation of the IID condition. The
test is based on a set of correlation integrals, designed to detect
nonlinearity of progressively higher dimensionality, and the order argument
sets the number of such integrals. This must be at least 2; the first
integral establishes a baseline but does not support a test. The BDS test is
of the portmanteau type: able to detect all manner of departures from
linearity but not informative about how exactly the condition was violated.

Instead of giving x as a series, the --matrix option can be used to specify
a matrix as input. The matrix must be a vector (column or row).

Criterion for closeness

The correlation integrals are based on a measure of "closeness" of data
points, where two points are considered close if they lie within ε of each
other. The test requires a specification of ε. By default gretl follows the
recommendation of Kanzler (1999): ε is chosen such that the first-order
correlation integral is around 0.7. A common alternative (requiring less
computation) is to specify ε as a multiple of the standard deviation of the
target series. The --sdcrit option supports the latter method; in the third
example above ε is set to twice the standard deviation of x. The --corr1
option implies use of Kanzler's method but allows for a target correlation
other than 0.7. It should be clear that these two options are mutually
exclusive.

Bootstrapping

BDS test statistics are asymptotically distributed as N(0,1) but the test
over-rejects quite markedly in small to moderate-sized samples. For that
reason P-values are by default obtained via bootstrapping when x is of
length less than 600 (but by reference to the normal distribution
otherwise). If you want to use the bootstrap for larger samples you can
force the issue by giving a non-zero value for the --boot option,
Conversely, if you don't want bootstrapping for smaller samples, give a zero
value for --boot.

When bootstrapping is performed the default number of iterations is 1999,
but you can specify a different number by giving a value greater than 1 with
--boot.

Accessor matrix

On successful completion of this command, "$result" retrieves the test
results in the form of a matrix with two rows and order - 1 columns. The
first row contains test statistics and the second P-values for each of the
per-dimension tests under the null that x is linear/IID.

# biprobit Estimation

Arguments:  depvar1 depvar2 indepvars1 [ ; indepvars2 ] 
Options:    --vcv (print covariance matrix)
            --robust (robust standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --opg (see below)
            --save-xbeta (see below)
            --verbose (print extra information)
Examples:   biprobit y1 y2 0 x1 x2
            biprobit y1 y2 0 x11 x12 ; 0 x21 x22
            See also biprobit.inp

Estimates a bivariate probit model, using the Newton-Raphson method to
maximize the likelihood.

The argument list starts with the two (binary) dependent variables, followed
by a list of regressors. If a second list is given, separated by a
semicolon, this is interpreted as a set of regressors specific to the second
equation, with indepvars1 being specific to the first equation; otherwise
indepvars1 is taken to represent a common set of regressors.

By default, standard errors are computed using the analytical Hessian at
convergence. But if the --opg option is given the covariance matrix is based
on the Outer Product of the Gradient (OPG), or if the --robust option is
given QML standard errors are calculated, using a "sandwich" of the inverse
of the Hessian and the OPG.

Note that the estimate of rho, the correlation of the error terms across the
two equations, is included in the coefficient vector; it's the last element
in the accessors coeff, stderr and vcv.

After successful estimation, the accessor $uhat retrieves a matrix with two
columns holding the generalized residuals for the two equations; that is,
the expected values of the disturbances conditional on the observed outcomes
and covariates. By default $yhat retrieves a matrix with four columns,
holding the estimated probabilities of the four possible joint outcomes for
(y_1, y_2), in the order (1,1), (1,0), (0,1), (0,0). Alternatively, if the
option --save-xbeta is given, $yhat has two columns and holds the values of
the index functions for the respective equations.

The output includes a test of the null hypothesis that the disturbances in
the two equations are uncorrelated. This is a likelihood ratio test unless
the QML variance estimator is requested, in which case it's a Wald test.

# bkw Tests

Option:     --quiet (don't print anything)
Examples:   longley.inp

Must follow the estimation of a model which includes at least two
independent variables. Calculates and displays diagnostic information
pertaining to collinearity, namely the BKW Table, based on the work of
Belsley, Kuh and Welsch (1980). This table presents a sophisticated analysis
of the degree and sources of collinearity, via eigenanalysis of the inverse
correlation matrix. For a thorough account of the BKW approach with
reference to gretl, and with several examples, see Adkins, Waters and Hill
(2015).

Following this command the "$result" accessor may be used to retrieve the
BKW table as a matrix. See also the "vif" command for a simpler approach to
diagnosing collinearity.

There is also a function named "bkw" which offers greater flexibility.

Menu path:    Model window, /Analysis/Collinearity

# boxplot Graphs

Argument:   varlist 
Options:    --notches (show 90 percent interval for median)
            --factorized (see below)
            --panel (see below)
            --matrix=name (plot columns of named matrix)
            --output=filename (send output to specified file)

These plots display the distribution of a variable. The central box encloses
the middle 50 percent of the data, i.e. it is bounded by the first and third
quartiles. The "whiskers" extend from each end of the box for a range equal
to 1.5 times the interquartile range. Observations outside that range are
considered outliers and represented via dots. A line is drawn across the box
at the median. A "+" sign is used to indicate the mean. If the option of
showing a confidence interval for the median is selected, this is computed
via the bootstrap method and shown in the form of dashed horizontal lines
above and/or below the median.

The --factorized option allows you to examine the distribution of a chosen
variable conditional on the value of some discrete factor. For example, if a
data set contains wages and a gender dummy variable you can select the wage
variable as the target and gender as the factor, to see side-by-side
boxplots of male and female wages, as in

	boxplot wage gender --factorized

Note that in this case you must specify exactly two variables, with the
factor given second.

If the current data set is a panel, and just one variable is specified, the
--panel option produces a series of side-by-side boxplots, one for each
panel "unit" or group.

Generally, the argument varlist is required, and refers to one or more
series in the current dataset (given either by name or ID number). But if a
named matrix is supplied via the --matrix option this argument becomes
optional: by default a plot is drawn for each column of the specified
matrix.

Gretl's boxplots are generated using gnuplot, and it is possible to specify
the plot more fully by appending additional gnuplot commands, enclosed in
braces. For details, please see the help for the "gnuplot" command.

In interactive mode the result is displayed immediately. In batch mode the
default behavior is that a gnuplot command file is written in the user's
working directory, with a name on the pattern gpttmpN.plt, starting with N =
01. The actual plots may be generated later using gnuplot (under MS Windows,
wgnuplot). This behavior can be modified by use of the --output=filename
option. For details, please see the "gnuplot" command.

Menu path:    /View/Graph specified vars/Boxplots

# break Programming

Break out of a loop. This command can be used only within a loop; it causes
command execution to break out of the current (innermost) loop. See also
"loop", "continue".

# catch Programming

Syntax:     catch command

This is not a command in its own right but can be used as a prefix to most
regular commands: the effect is to prevent termination of a script if an
error occurs in executing the command. If an error does occur, this is
registered in an internal error code which can be accessed as $error (a zero
value indicates success). The value of $error should always be checked
immediately after using catch, and appropriate action taken if the command
failed.

The catch keyword cannot be used before if, elif or endif. In addition it
should not be used on calls to user-defined functions; it is intended for
use only with gretl commands and calls to "built-in" functions or operators.
Furthermore, catch cannot be used in conjunction with "back-arrow"
assignment of models or plots to session icons (see chapter 3 of the Gretl
User's Guide).

# chow Tests

Variants:   chow obs
            chow dummyvar --dummy
Options:    --dummy (use a pre-existing dummy variable)
            --quiet (don't print estimates for augmented model)
            --limit-to=list (limit test to subset of regressors)
Examples:   chow 25
            chow 1988:1
            chow female --dummy

Must follow an OLS regression. If an observation number or date is given,
provides a test for the null hypothesis of no structural break at the given
split point. The procedure is to create a dummy variable which equals 1 from
the split point specified by obs to the end of the sample, 0 otherwise, and
also interaction terms between this dummy and the original regressors. If a
dummy variable is given, tests the null hypothesis of structural homogeneity
with respect to that dummy. Again, interaction terms are added. In either
case an augmented regression is run including the additional terms.

By default an F statistic is calculated, taking the augmented regression as
the unrestricted model and the original as the restricted. But if the
original model used a robust estimator for the covariance matrix, the test
statistic is a Wald chi-square value based on a robust estimator of the
covariance matrix for the augmented regression.

The --limit-to option can be used to limit the set of interactions with the
split dummy variable to a subset of the original regressors. The parameter
for this option must be a named list, all of whose members are among the
original regressors. The list should not include the constant.

Menu path:    Model window, /Tests/Chow test

# clear Programming

Options:    --dataset (clear dataset only)
            --functions (clear functions (only))

By default this command clears the current dataset (if any) plus all saved
variables (scalars, matrices, etc.) out of memory. Note that opening a new
dataset, or using the "nulldata" command to create an empty dataset, also
has this effect, so explicit use of "clear" is not usually necessary.

If the --dataset option is given, then only the dataset is cleared (plus any
named lists of series); other saved objects such as matrices, scalars and
bundles are preserved.

If the --functions option is given, then any user-defined functions, and any
functions defined by packages that have been loaded, are cleared out of
memory. The dataset and other variables are not affected.

# coeffsum Tests

Argument:   varlist 
Option:     --quiet (don't print anything)
Examples:   coeffsum xt xt_1 xr_2
            See also restrict.inp

Must follow a regression. Calculates the sum of the coefficients on the
variables in varlist. Prints this sum along with its standard error and the
p-value for the null hypothesis that the sum is zero.

Note the difference between this and "omit", which tests the null hypothesis
that the coefficients on a specified subset of independent variables are all
equal to zero.

The --quiet option may be useful if one just wants access to the "$test" and
"$pvalue" values that are recorded on successful completion.

Menu path:    Model window, /Tests/Sum of coefficients

# coint Tests

Arguments:  order depvar indepvars 
Options:    --nc (do not include a constant)
            --ct (include constant and trend)
            --ctt (include constant and quadratic trend)
            --seasonals (include seasonal dummy variables)
            --skip-df (no DF tests on individual variables)
            --test-down[=criterion] (automatic lag order)
            --verbose (print extra details of regressions)
            --silent (don't print anything)
Examples:   coint 4 y x1 x2
            coint 0 y x1 x2 --ct --skip-df

The Engle-Granger (1987) cointegration test. The default procedure is: (1)
carry out Dickey-Fuller tests on the null hypothesis that each of the
variables listed has a unit root; (2) estimate the cointegrating regression;
and (3) run a DF test on the residuals from the cointegrating regression. If
the --skip-df flag is given, step (1) is omitted.

If the specified lag order is positive all the Dickey-Fuller tests use that
order, with this qualification: if the --test-down option is given, the
given value is taken as the maximum and the actual lag order used in each
case is obtained by testing down. See the "adf" command for details of this
procedure.

By default, the cointegrating regression contains a constant. If you wish to
suppress the constant, add the --nc flag. If you wish to augment the list of
deterministic terms in the cointegrating regression with a linear or
quadratic trend, add the --ct or --ctt flag. These option flags are mutually
exclusive. You also have the option of adding seasonal dummy variables (in
the case of quarterly or monthly data).

P-values for this test are based on MacKinnon (1996). The relevant code is
included by kind permission of the author.

For the cointegration tests due to Søren Johansen, see "johansen".

Menu path:    /Model/Multivariate time series

# continue Programming

This command can be used only within a loop; it has the effect of skipping
the subsequent statements within the current iteration of the current
(innermost) loop. See also "loop", "break"

# corr Statistics

Variants:   corr [ varlist ]
            corr --matrix=matname
Options:    --uniform (ensure uniform sample)
            --spearman (Spearman's rho)
            --kendall (Kendall's tau)
            --verbose (print rankings)
            --plot=mode-or-filename (see below)
            --triangle (only plot lower half, see below)
Examples:   corr y x1 x2 x3
            corr ylist --uniform
            corr x y --spearman
            corr --matrix=X --plot=display

By default, prints the pairwise correlation coefficients (Pearson's
product-moment correlation) for the variables in varlist, or for all
variables in the data set if varlist is not given. The standard behavior is
to use all available observations for computing each pairwise coefficient,
but if the --uniform option is given the sample is limited (if necessary) so
that the same set of observations is used for all the coefficients. This
option has an effect only if there are differing numbers of missing values
for the variables used.

The (mutually exclusive) options --spearman and --kendall produce,
respectively, Spearman's rank correlation rho and Kendall's rank correlation
tau in place of the default Pearson coefficient. When either of these
options is given, varlist should contain just two variables.

When a rank correlation is computed, the --verbose option can be used to
print the original and ranked data (otherwise this option is ignored).

If varlist contains more than two series and the program is not in batch
mode, a "heatmap" plot of the correlation matrix is shown. This can be
adjusted via the --plot option. The acceptable parameters to this option are
none (to suppress the plot); display (to display a plot even when in batch
mode); or a file name. The effect of providing a file name is as described
for the --output option of the "gnuplot" command. When plotting is active
the option --triangle can be used to show only the lower triangle of the
matrix plot.

If the alternative form is given, using a named matrix rather than a list of
series, the --spearman and --kendall options are not available -- but see
the "npcorr" function.

The "$result" accessor can be used to obtain the correlations as a matrix.

Menu path:    /View/Correlation matrix
Other access: Main window pop-up menu (multiple selection)

# corrgm Statistics

Arguments:  series [ order ] 
Options:    --bartlett (use Bartlett standard errors)
            --plot=mode-or-filename (see below)
            --quiet (suppress the plot)
Example:    corrgm x 12

Prints the values of the autocorrelation function (ACF) for series, which
may be specified by name or number. The values are defined as rho(u_t,
u_t-s) where u_t is the t^th observation of the variable u and s denotes the
number of lags.

The partial autocorrelations (PACF, calculated using the Durbin-Levinson
algorithm) are also shown: these are net of the effects of intervening lags.
In addition the Ljung-Box Q statistic is printed. This may be used to test
the null hypothesis that the series is "white noise"; it is asymptotically
distributed as chi-square with degrees of freedom equal to the number of
lags used.

Asterisks are used to indicate statistical significance of the individual
autocorrelations. By default this is assessed using a standard error of one
over the square root of the sample size, but if the --bartlett option is
given then Bartlett standard errors are used for the ACF. This option also
governs the confidence band drawn in the ACF plot, if applicable.

If an order value is specified the length of the correlogram is limited to
at most that number of lags, otherwise the length is determined
automatically, as a function of the frequency of the data and the number of
observations.

By default, a plot of the correlogram is produced: a gnuplot graph in
interactive mode or an ASCII graphic in batch mode. This can be adjusted via
the --plot option. The acceptable parameters to this option are none (to
suppress the plot); ascii (to produce a text graphic even when in
interactive mode); display (to produce a gnuplot graph even when in batch
mode); or a file name. The effect of providing a file name is as described
for the --output option of the "gnuplot" command.

Upon successful completion, the accessors "$test" and "$pvalue" contain the
corresponding figures of the Ljung-Box test for the maximum order displayed.
Note that if you just want to compute the Q statistic, you'll probably want
to use the "ljungbox" function instead.

Menu path:    /Variable/Correlogram
Other access: Main window pop-up menu (single selection)

# cusum Tests

Options:    --squares (perform the CUSUMSQ test)
            --quiet (just print the Harvey-Collier test)
            --plot=mode-or-filename (see below)

Must follow the estimation of a model via OLS. Performs the CUSUM test -- or
if the --squares option is given, the CUSUMSQ test -- for parameter
stability. A series of one-step ahead forecast errors is obtained by running
a series of regressions: the first regression uses the first k observations
and is used to generate a prediction of the dependent variable at
observation k + 1; the second uses the first k + 1 observations and
generates a prediction for observation k + 2, and so on (where k is the
number of parameters in the original model).

The cumulated sum of the scaled forecast errors, or the squares of these
errors, is printed. The null hypothesis of parameter stability is rejected
at the 5 percent significance level if the cumulated sum strays outside of
the 95 percent confidence band.

In the case of the CUSUM test, the Harvey-Collier t-statistic for testing
the null hypothesis of parameter stability is also printed. See Greene's
Econometric Analysis for details. For the CUSUMSQ test, the 95 percent
confidence band is calculated using the algorithm given in Edgerton and
Wells (1994).

By default, if the program is not in batch mode a plot of the cumulated
series and confidence band is shown. This can be adjusted via the --plot
option. The acceptable parameters to this option are none (to suppress the
plot); display (to display a plot even when in batch mode); or a file name.
The effect of providing a file name is as described for the --output option
of the "gnuplot" command.

Menu path:    Model window, /Tests/CUSUM(SQ)

# data Dataset

Argument:   varlist 
Options:    --compact=method (specify compaction method)
            --quiet (don't report results except on error)
            --name=identifier (rename imported series)
            --odbc (import from ODBC database)
            --no-align (ODBC-specific, see below)

Reads the variables in varlist from a database file (native gretl, RATS 4.0
or PcGive), which must have been opened previously using the "open" command.
The data command can also be used to import series from DB.NOMICS or from an
ODBC database; for details on those variants see gretl + DB.NOMICS or
chapter 42 of the Gretl User's Guide, respectively.

The data frequency and sample range may be established via the "setobs" and
"smpl" commands prior to using this command. Here's an example:

	open fedstl.bin
	setobs 12 2000:01
	smpl ; 2019:12
	data unrate cpiaucsl

The commands above open the database named fedstl.bin (which is supplied
with gretl), establish a monthly dataset starting in January 2000 and ending
in December of 2019, and then import the series named unrate (unemployment
rate) and cpiaucsl (all-items CPI).

If setobs and smpl are not specified in this way, the data frequency and
sample range are set using the first variable read from the database.

If the series to be read are of higher frequency than the working dataset,
you may specify a compaction method as below:

	data LHUR PUNEW --compact=average

The five available compaction methods are "average" (takes the mean of the
high frequency observations), "last" (uses the last observation), "first",
"sum" and "spread". If no method is specified, the default is to use the
average. The "spread" method is special: no information is lost, rather it
is spread across multiple series, one per sub-period. So for example when
adding a monthly series to a quarterly dataset three series are created, one
for each month of the quarter; their names bear the suffixes m01, m02 and
m03.

If the series to be read are of lower frequency than the working dataset the
values of the added data are simply repeated as required, but note that the
"tdisagg" function can then be used to distribution or interpolation
("temporal disaggregation").

In the case of native gretl databases (only), the "glob" characters * and ?
can be used in varlist to import series that match the given pattern. For
example, the following will import all series in the database whose names
begin with cpi:

	data cpi*

The --name option can be used to set a name for the imported series other
than the original name in the database. The parameter must be a valid gretl
identifier. This option is restricted to the case where a single series is
specified for importation.

The --no-align option applies only to importation of series via ODBC. By
default we require that the ODBC query returns information telling gretl on
which rows of the dataset to place the incoming data -- or at least that the
number of incoming values matches either the length of the dataset or the
length of the current sample range. Setting the --no-align option relaxes
this requirement: failing the conditions just mentioned, incoming values are
simply placed consecutively starting at the first row of the dataset. If
there are fewer such values than rows in the dataset the trailing rows are
filled with NAs; if there are more such values than rows the extra values
are discarded. For more on ODBC importation see chapter 42 of the Gretl
User's Guide.

Menu path:    /File/Databases

# dataset Dataset

Arguments:  keyword parameters 
Option:     --panel-time (see addobs below)
Examples:   dataset addobs 24
            dataset addobs 2 --panel-time
            dataset insobs 10
            dataset compact 1
            dataset compact 4 last
            dataset expand
            dataset transpose
            dataset sortby x1
            dataset resample 500
            dataset renumber x 4
            dataset pad-daily 7
            dataset unpad-daily
            dataset clear

Performs various operations on the data set as a whole, depending on the
given keyword, which must be addobs, insobs, clear, compact, expand,
transpose, sortby, dsortby, resample, renumber, pad-daily or unpad-daily.
Note: with the exception of clear, these actions are not available when the
dataset is currently subsampled by selection of cases on some Boolean
criterion.

addobs: Must be followed by a positive integer, call it n. Adds n extra
observations to the end of the working dataset. This is primarily intended
for forecasting purposes. The values of most variables over the additional
range will be set to missing, but certain deterministic variables are
recognized and extended, namely, a simple linear trend and periodic dummy
variables. If the dataset takes the form of a panel, the default action is
to add n cross-sectional units to the panel, but if the --panel-time flag is
given the effect is to add n observations to the time series for each unit.

insobs: Must be followed by a positive integer no greater than the current
number of observations. Inserts a single observation at the specified
position. All subsequent data are shifted by one place and the dataset is
extended by one observation. All variables apart from the constant are given
missing values at the new observation. This action is not available for
panel datasets.

clear: No parameter required. Clears out the current data, returning gretl
to its initial "empty" state.

compact: Must be followed by a positive integer representing a new data
frequency, which should be lower than the current frequency (for example, a
value of 4 when the current frequency is 12 indicates compaction from
monthly to quarterly). This command is available for time series data only;
it compacts all the series in the data set to the new frequency. A second
parameter may be given, namely one of sum, first, last or spread, to
specify, respectively, compaction using the sum of the higher-frequency
values, start-of-period values, end-of-period values, or spreading of the
higher-frequency values across multiple series (one per sub-period). The
default is to compact by averaging.

expand: This command is only available for annual or quarterly time series
data: annual data can be expanded to quarterly or monthly, and quarterly
data to monthly. All series in the data set are padded out to the new
frequency by repeating the existing values. If the original dataset is
annual the default expansion is to quarterly but expand can be followed by
12 to request monthly.

transpose: No additional parameter required. Transposes the current data
set. That is, each observation (row) in the current data set will be treated
as a variable (column), and each variable as an observation. This command
may be useful if data have been read from some external source in which the
rows of the data table represent variables.

sortby: The name of a single series or list is required. If one series is
given, the observations on all variables in the dataset are re-ordered by
increasing value of the specified series. If a list is given, the sort
proceeds hierarchically: if the observations are tied in sort order with
respect to the first key variable then the second key is used to break the
tie, and so on until the tie is broken or the keys are exhausted. Note that
this command is available only for undated data.

dsortby: Works as sortby except that the re-ordering is by decreasing value
of the key series.

resample: Constructs a new dataset by random sampling, with replacement, of
the rows of the current dataset. One argument is required, namely the number
of rows to include. This may be less than, equal to, or greater than the
number of observations in the original data. The original dataset can be
retrieved via the command smpl full.

renumber: Requires the name of an existing series followed by an integer
between 1 and the number of series in the dataset minus one. Moves the
specified series to the specified position in the dataset, renumbering the
other series accordingly. (Position 0 is occupied by the constant, which
cannot be moved.)

pad-daily: Valid only if the current dataset contains dated daily data with
an incomplete calendar. The effect is to pad the data out to a complete
calendar by inserting blank rows (that is, rows containing nothing but NAs).
This option requires an integer parameter, namely the number of days per
week, which must be 5, 6 or 7, and must be greater than or equal to the
current data frequency. On successful completion, the data calendar will be
"complete" relative to this value. For example if days-per-week is 5 then
all weekdays will be represented, whether or not any data are available for
those days.

unpad-daily: Valid only if the current dataset contains dated daily data, in
which case it performs the inverse operation of pad-daily. That is, any rows
that contain nothing but NAs are removed, while the time-series property of
the dataset is preserved along with the dates of the individual
observations.

Menu path:    /Data

# delete Dataset

Variants:   delete varlist
            delete varname
            delete --type=type-name
            delete pkgname
Options:    --db (delete series from database)
            --force (see below)

This command is an all-purpose destructor. It should be used with caution;
no confirmation is asked.

In the first form above, varlist is a list of series, given by name or ID
number. Note that when you delete series any series with higher ID numbers
than those on the deletion list will be re-numbered. If the --db option is
given, this command deletes the listed series not from the current dataset
but from a gretl database, assuming that a database has been opened, and the
user has write permission for file in question. See also the "open" command.

In the second form, the name of a scalar, matrix, string or bundle may be
given for deletion. The --db option is not applicable in this case. Note
that series and variables of other types should not be mixed in a given call
to delete.

In the third form, the --type option must be accompanied by one of the
following type-names: matrix, bundle, string, list, scalar or array. The
effect is to delete all variables of the given type. In this case no
argument other than the option should be given.

The fourth form can be used to unload a function package. In this case the
.gfn suffix must be supplied, as in

	delete somepkg.gfn

Note that this does not delete the package file, it just unloads the package
from memory.

Deleting variables in a loop

In general it is not permitted to delete variables in the context of a loop,
since this may threaten the integrity of the loop code. However, if you are
confident that deleting a certain variable is safe you can override this
prohibition by appending the --force flag to the delete command.

Menu path:    Main window pop-up (single selection)

# diff Transformations

Argument:   varlist 
Examples:   penngrow.inp, sw_ch12.inp, sw_ch14.inp

The first difference of each variable in varlist is obtained and the result
stored in a new variable with the prefix d_. Thus "diff x y" creates the new
variables

	d_x = x(t) - x(t-1)
	d_y = y(t) - y(t-1)

Menu path:    /Add/First differences of selected variables

# difftest Tests

Arguments:  series1 series2 
Options:    --sign (Sign test, the default)
            --rank-sum (Wilcoxon rank-sum test)
            --signed-rank (Wilcoxon signed-rank test)
            --verbose (print extra output)
            --quiet (suppress printed output)
Examples:   ooballot.inp

Carries out a nonparametric test for a difference between two populations or
groups, the specific test depending on the option selected.

With the --sign option, the Sign test is performed. This test is based on
the fact that if two samples, x and y, are drawn randomly from the same
distribution, the probability that x_i > y_i, for each observation i, should
equal 0.5. The test statistic is w, the number of observations for which x_i
> y_i. Under the null hypothesis this follows the Binomial distribution with
parameters (n, 0.5), where n is the number of observations.

With the --rank-sum option, the Wilcoxon rank-sum test is performed. This
test proceeds by ranking the observations from both samples jointly, from
smallest to largest, then finding the sum of the ranks of the observations
from one of the samples. The two samples do not have to be of the same size,
and if they differ the smaller sample is used in calculating the rank-sum.
Under the null hypothesis that the samples are drawn from populations with
the same median, the probability distribution of the rank-sum can be
computed for any given sample sizes; and for reasonably large samples a
close Normal approximation exists.

With the --signed-rank option, the Wilcoxon signed-rank test is performed.
This is designed for matched data pairs such as, for example, the values of
a variable for a sample of individuals before and after some treatment. The
test proceeds by finding the differences between the paired observations,
x_i - y_i, ranking these differences by absolute value, then assigning to
each pair a signed rank, the sign agreeing with the sign of the difference.
One then calculates W_+, the sum of the positive signed ranks. As with the
rank-sum test, this statistic has a well-defined distribution under the null
that the median difference is zero, which converges to the Normal for
samples of reasonable size.

For the Wilcoxon tests, if the --verbose option is given then the ranking is
printed. (This option has no effect if the Sign test is selected.)

On successful completion the accessors "$test" and "$pvalue" are available.
If one just wants to obtain these values the --quiet flag can be appended to
the command.

# discrete Transformations

Argument:   varlist 
Option:     --reverse (mark variables as continuous)
Examples:   ooballot.inp, oprobit.inp

Marks each variable in varlist as being discrete. By default all variables
are treated as continuous; marking a variable as discrete affects the way
the variable is handled in frequency plots, and also allows you to select
the variable for the command "dummify".

If the --reverse flag is given, the operation is reversed; that is, the
variables in varlist are marked as being continuous.

Menu path:    /Variable/Edit attributes

# dpanel Estimation

Argument:   p ; depvar indepvars [ ; instruments ] 
Options:    --quiet (don't show estimated model)
            --vcv (print covariance matrix)
            --two-step (perform 2-step GMM estimation)
            --system (add equations in levels)
            --collapse (see below)
            --time-dummies (add time dummy variables)
            --dpdstyle (emulate DPD package for Ox)
            --asymptotic (uncorrected asymptotic standard errors)
            --keep-extra (see below)
Examples:   dpanel 2 ; y x1 x2
            dpanel 2 ; y x1 x2 --system
            dpanel {2 3} ; y x1 x2 ; x1
            dpanel 1 ; y x1 x2 ; x1 GMM(x2,2,3)
            See also bbond98.inp

Carries out estimation of dynamic panel data models (that is, panel models
including one or more lags of the dependent variable) using either the
GMM-DIF or GMM-SYS method.

The parameter p represents the order of the autoregression for the dependent
variable. In the simplest case this is a scalar value, but a pre-defined
matrix may be given for this argument, to specify a set of (possibly
non-contiguous) lags to be used.

The dependent variable and regressors should be given in levels form; they
will be differenced automatically (since this estimator uses differencing to
cancel out the individual effects).

The last (optional) field in the command is for specifying instruments. If
no instruments are given, it is assumed that all the independent variables
are strictly exogenous. If you specify any instruments, you should include
in the list any strictly exogenous independent variables. For predetermined
regressors, you can use the GMM function to include a specified range of
lags in block-diagonal fashion. This is illustrated in the third example
above. The first argument to GMM is the name of the variable in question,
the second is the minimum lag to be used as an instrument, and the third is
the maximum lag. The same syntax can be used with the GMMlevel function to
specify GMM-type instruments for the equations in levels.

The --collapse option can be used to limit the proliferation of "GMM-style"
instruments, which can be a problem with this estimator. Its effect is to
reduce such instruments from one per lag per observation to one per lag.

By default the results of 1-step estimation are reported (with robust
standard errors). You may select 2-step estimation as an option. In both
cases tests for autocorrelation of orders 1 and 2 are provided, as well as
Sargan and/or Hansen overidentification tests and a Wald test for the joint
significance of the regressors. Note that in this differenced model
first-order autocorrelation is not a threat to the validity of the model,
but second-order autocorrelation violates the maintained statistical
assumptions.

In the case of 2-step estimation, standard errors are by default computed
using the finite-sample correction suggested by Windmeijer (2005). The
standard asymptotic standard errors associated with the 2-step estimator are
generally reckoned to be an unreliable guide to inference, but if for some
reason you want to see them you can use the --asymptotic option to turn off
the Windmeijer correction.

If the --time-dummies option is given, a set of time dummy variables is
added to the specified regressors. The number of dummies is one less than
the maximum number of periods used in estimation, to avoid perfect
collinearity with the constant. The dummies are entered in differenced form
unless the --dpdstyle option is given, in which case they are entered in
levels.

As with other estimation commands, a "$model" bundle is available after
estimation. In the case of dpanel, the --keep-extra option can be used to
save additional information in this bundle, namely the GMM weight and
instrument matrices.

For further details and examples, please see chapter 24 of the Gretl User's
Guide.

Menu path:    /Model/Panel/Dynamic panel model

# dummify Transformations

Argument:   varlist 
Options:    --drop-first (omit lowest value from encoding)
            --drop-last (omit highest value from encoding)

For any suitable variables in varlist, creates a set of dummy variables
coding for the distinct values of that variable. Suitable variables are
those that have been explicitly marked as discrete, or those that take on a
fairly small number of values all of which are "fairly round" (multiples of
0.25).

By default a dummy variable is added for each distinct value of the variable
in question. For example if a discrete variable x has 5 distinct values, 5
dummy variables will be added to the data set, with names Dx_1, Dx_2 and so
on. The first dummy variable will have value 1 for observations where x
takes on its smallest value, 0 otherwise; the next dummy will have value 1
when x takes on its second-smallest value, and so on. If one of the option
flags --drop-first or --drop-last is added, then either the lowest or the
highest value of each variable is omitted from the encoding (which may be
useful for avoiding the "dummy variable trap").

This command can also be embedded in the context of a regression
specification. For example, the following line specifies a model where y is
regressed on the set of dummy variables coding for x. (Option flags cannot
be passed to "dummify" in this context.)

	ols y dummify(x)

Other access: Main window pop-up menu (single selection)

# duration Estimation

Arguments:  depvar indepvars [ ; censvar ] 
Options:    --exponential (use exponential distribution)
            --loglogistic (use log-logistic distribution)
            --lognormal (use log-normal distribution)
            --medians (fitted values are medians)
            --robust (robust (QML) standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print anything)
Examples:   duration y 0 x1 x2
            duration y 0 x1 x2 ; cens
            See also weibull.inp

Estimates a duration model: the dependent variable (which must be positive)
represents the duration of some state of affairs, for example the length of
spells of unemployment for a cross-section of respondents. By default the
Weibull distribution is used but the exponential, log-logistic and
log-normal distributions are also available.

If some of the duration measurements are right-censored (e.g. an
individual's spell of unemployment has not come to an end within the period
of observation) then you should supply the trailing argument censvar, a
series in which non-zero values indicate right-censored cases.

By default the fitted values obtained via the accessor $yhat are the
conditional means of the durations, but if the --medians option is given
then $yhat provides the conditional medians instead.

Please see chapter 38 of the Gretl User's Guide for details.

Menu path:    /Model/Limited dependent variable/Duration data

# elif Programming

See "if".

# else Programming

See "if". Note that "else" requires a line to itself, before the following
conditional command. You can append a comment, as in

	else # OK, do something different

But you cannot append a command, as in

	else x = 5 # wrong!

# end Programming

Ends a block of commands of some sort. For example, "end system" terminates
an equation "system".

# endif Programming

See "if".

# endloop Programming

Marks the end of a command loop. See "loop".

# eqnprint Printing

Options:    --complete (Create a complete document)
            --output=filename (send output to specified file)

Must follow the estimation of a model. Prints the estimated model in the
form of a LaTeX equation. If a filename is specified using the --output
option output goes to that file, otherwise it goes to a file with a name of
the form equation_N.tex, where N is the number of models estimated to date
in the current session. See also "tabprint".

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification.

If the --complete flag is given, the LaTeX file is a complete document,
ready for processing; otherwise it must be included in a document.

Menu path:    Model window, /LaTeX

# equation Estimation

Arguments:  depvar indepvars 
Example:    equation y x1 x2 x3 const

Specifies an equation within a system of equations (see "system"). The
syntax for specifying an equation within an SUR system is the same as that
for, e.g., "ols". For an equation within a Three-Stage Least Squares system
you may either (a) give an OLS-type equation specification and provide a
common list of instruments using the "instr" keyword (again, see "system"),
or (b) use the same equation syntax as for "tsls".

# estimate Estimation

Arguments:  [ systemname ] [ estimator ] 
Options:    --iterate (iterate to convergence)
            --no-df-corr (no degrees of freedom correction)
            --geomean (see below)
            --quiet (don't print results)
            --verbose (print details of iterations)
Examples:   estimate "Klein Model 1" method=fiml
            estimate Sys1 method=sur
            estimate Sys1 method=sur --iterate

Calls for estimation of a system of equations, which must have been
previously defined using the "system" command. The name of the system should
be given first, surrounded by double quotes if the name contains spaces. The
estimator, which must be one of "ols", "tsls", "sur", "3sls", "fiml" or
"liml", is preceded by the string method=. These arguments are optional if
the system in question has already been estimated and occupies the place of
the "last model"; in that case the estimator defaults to the previously used
value.

If the system in question has had a set of restrictions applied (see the
"restrict" command), estimation will be subject to the specified
restrictions.

If the estimation method is "sur" or "3sls" and the --iterate flag is given,
the estimator will be iterated. In the case of SUR, if the procedure
converges the results are maximum likelihood estimates. Iteration of
three-stage least squares, however, does not in general converge on the
full-information maximum likelihood results. The --iterate flag is ignored
for other methods of estimation.

If the equation-by-equation estimators "ols" or "tsls" are chosen, the
default is to apply a degrees of freedom correction when calculating
standard errors. This can be suppressed using the --no-df-corr flag. This
flag has no effect with the other estimators; no degrees of freedom
correction is applied in any case.

By default, the formula used in calculating the elements of the
cross-equation covariance matrix is

  sigma(i,j) = u(i)' * u(j) / T

If the --geomean flag is given, a degrees of freedom correction is applied:
the formula is

  sigma(i,j) = u(i)' * u(j) / sqrt((T - ki) * (T - kj))

where the ks denote the number of independent parameters in each equation.

If the --verbose option is given and an iterative method is specified,
details of the iterations are printed.

# eval Utilities

Argument:   expression 
Examples:   eval x
            eval inv(X'X)
            eval sqrt($pi)

This command makes gretl act like a glorified calculator. The program
evaluates expression and prints its value. The argument may be the name of a
variable, or something more complicated. In any case, it should be an
expression which could stand as the right-hand side of an assignment
statement.

In interactive use (for instance in the gretl console) an equals sign works
as shorthand for eval, as in

	=sqrt(x)

(with or without a space following "="). But this variant is not accepted in
scripting mode since it could easily mask coding errors.

In most contexts "print" can be used in place of eval to much the same
effect. See also "printf" for the case where you wish to combine textual and
numerical output.

# fcast Prediction

Variants:   fcast [startobs endobs] [vname]
            fcast [startobs endobs] steps-ahead [vname] --recursive
Options:    --dynamic (create dynamic forecast)
            --static (create static forecast)
            --out-of-sample (generate post-sample forecast)
            --no-stats (don't print forecast statistics)
            --stats-only (only print forecast statistics)
            --quiet (don't print anything)
            --recursive (see below)
            --plot=filename (see below)
Examples:   fcast 1997:1 2001:4 f1
            fcast fit2
            fcast 2004:1 2008:3 4 rfcast --recursive
            See also gdp_midas.inp

Must follow an estimation command. Forecasts are generated for a certain
range of observations: if startobs and endobs are given, for that range (if
possible); otherwise if the --out-of-sample option is given, for
observations following the range over which the model was estimated;
otherwise over the currently defined sample range. If an out-of-sample
forecast is requested but no relevant observations are available, an error
is flagged. Depending on the nature of the model, standard errors may also
be generated; see below. Also see below for the special effect of the
--recursive option.

If the last model estimated is a single equation, then the optional vname
argument has the following effect: the forecast values are not printed, but
are saved to the dataset under the given name. If the last model is a system
of equations, vname has a different effect, namely selecting a particular
endogenous variable for forecasting (the default being to produce forecasts
for all the endogenous variables). In the system case, or if vname is not
given, the forecast values can be retrieved using the accessor "$fcast", and
the standard errors, if available, via "$fcse".

The choice between a static and a dynamic forecast applies only in the case
of dynamic models, with an autoregressive error process or including one or
more lagged values of the dependent variable as regressors. Static forecasts
are one step ahead, based on realized values from the previous period, while
dynamic forecasts employ the chain rule of forecasting. For example, if a
forecast for y in 2008 requires as input a value of y for 2007, a static
forecast is impossible without actual data for 2007. A dynamic forecast for
2008 is possible if a prior forecast can be substituted for y in 2007.

The default is to give a static forecast for any portion of the forecast
range that lies within the sample range over which the model was estimated,
and a dynamic forecast (if relevant) out of sample. The --dynamic option
requests a dynamic forecast from the earliest possible date, and the
--static option requests a static forecast even out of sample.

The --recursive option is presently available only for single-equation
models estimated via OLS. When this option is given the forecasts are
recursive. That is, each forecast is generated from an estimate of the given
model using data from a fixed starting point (namely, the start of the
sample range for the original estimation) up to the forecast date minus k,
where k is the number of steps ahead, which must be given in the steps-ahead
argument. The forecasts are always dynamic if this is applicable. Note that
the steps-ahead argument should be given only in conjunction with the
--recursive option.

The --plot option (available only in the case of single-equation estimation)
calls for a plot file to be produced, containing a graphical representation
of the forecast. The suffix of the filename argument to this option controls
the format of the plot: .eps for EPS, .pdf for PDF, .png for PNG, .plt for a
gnuplot command file. The dummy filename display can be used to force
display of the plot in a window. For example,

	fcast --plot=fc.pdf

will generate a graphic in PDF format. Absolute pathnames are respected,
otherwise files are written to the gretl working directory.

The nature of the forecast standard errors (if available) depends on the
nature of the model and the forecast. For static linear models standard
errors are computed using the method outlined by Davidson and MacKinnon
(2004); they incorporate both uncertainty due to the error process and
parameter uncertainty (summarized in the covariance matrix of the parameter
estimates). For dynamic models, forecast standard errors are computed only
in the case of a dynamic forecast, and they do not incorporate parameter
uncertainty. For nonlinear models, forecast standard errors are not
presently available.

Menu path:    Model window, /Analysis/Forecasts

# flush Programming

This simple command (no arguments, no options) is intended for use in
time-consuming scripts that may be executed via the gretl GUI (it is ignored
by the command-line program), to give the user a visual indication that
things are moving along and gretl is not "frozen".

Ordinarily if you launch a script in the GUI no output is shown until its
execution is completed, but the effect of invoking flush is as follows:

  On the first invocation, gretl opens a window, displays the output so far,
  and appends the message "Processing...".

  On subsequent invocations the text shown in the output window is updated,
  and a new "processing" message is appended.

When execution of the script is completed any remaining output is
automatically flushed to the text window.

Please note, there is no point in using flush in scripts that take less than
(say) 5 seconds to execute. Also note that this command should not be used
at a point in the script where there is no further output to be printed, as
the "processing" message will then be misleading to the user.

The following illustrates the intended use of flush:

       set echo off
       scalar n = 10
       loop i=1..n
           # do some time-consuming operation
           loop 100 --quiet
               a = mnormal(200,200)
               b = inv(a)
           endloop
           # print some results
           printf "Iteration %2d done\n", i
           if i < n
               flush
           endif
       endloop

# foreign Programming

Syntax:     foreign language=lang
Options:    --send-data[=list] (pre-load data; see below)
            --quiet (suppress output from foreign program)

This command opens a special mode in which commands to be executed by
another program are accepted. You exit this mode with end foreign; at this
point the stacked commands are executed.

At present the "foreign" programs supported in this way are GNU R
(language=R), Python, Julia, GNU Octave (language=Octave), Jurgen Doornik's
Ox and Stata. Language names are recognized on a case-insensitive basis.

In connection with R, Octave and Stata the --send-data option has the effect
of making data from gretl's workspace available within the target program.
By default the entire dataset is sent, but you can limit the data to be sent
by giving the name of a predefined list of series. For example:

	list Rlist = x1 x2 x3
	foreign language=R --send-data=Rlist

See chapter 44 of the Gretl User's Guide for details and examples.

# fractint Statistics

Arguments:  series [ order ] 
Options:    --gph (do Geweke and Porter-Hudak test)
            --all (do both tests)
            --quiet (don't print results)

Tests the specified series for fractional integration ("long memory"). The
null hypothesis is that the integration order of the series is zero. By
default the local Whittle estimator (Robinson, 1995) is used but if the
--gph option is given the GPH test (Geweke and Porter-Hudak, 1983) is
performed instead. If the --all flag is given then the results of both tests
are printed.

For details on this sort of test, see Phillips and Shimotsu (2004).

If the optional order argument is not given the order for the test(s) is set
automatically as the lesser of T/2 and T^0.6.

The estimated fractional integration orders and their standard errors are
available via the "$result" accessor. With the --all option, the Local
Whittle estimate will be in the first row and the GPH estimate in the second
one.

The results of the test can be retrieved using the accessors "$test" and
"$pvalue". These values are based on the Local Whittle Estimator unless the
--gph option is given.

Menu path:    /Variable/Unit root tests/Fractional integration

# freq Statistics

Argument:   var 
Options:    --nbins=n (specify number of bins)
            --min=minval (specify minimum, see below)
            --binwidth=width (specify bin width, see below)
            --normal (test for the normal distribution)
            --gamma (test for gamma distribution)
            --silent (don't print anything)
            --matrix=name (use column of named matrix)
            --plot=mode-or-filename (see below)
            --quiet (suppress the plot)
Examples:   freq x
            freq x --normal
            freq x --nbins=5
            freq x --min=0 --binwidth=0.10

With no options given, displays the frequency distribution for the series
var (given by name or number), with the number of bins and their size chosen
automatically.

If the --matrix option is given, var (which must be an integer) is instead
interpreted as a 1-based index that selects a column from the named matrix.
If the matrix in question is in fact a column vector, the var argument may
be omitted.

To control the presentation of the distribution you may specify either the
number of bins or the minimum value plus the width of the bins, as shown in
the last two examples above. The --min option sets the lower limit of the
left-most bin.

If the --normal option is given, the Doornik-Hansen chi-square test for
normality is computed. If the --gamma option is given, the test for
normality is replaced by Locke's nonparametric test for the null hypothesis
that the variable follows the gamma distribution; see Locke (1976), Shapiro
and Chen (2001). Note that the parameterization of the gamma distribution
used in gretl is (shape, scale).

By default, if the program is not in batch mode a plot of the distribution
is shown. This can be adjusted via the --plot option. The acceptable
parameters to this option are none (to suppress the plot); display (to
display a plot even when in batch mode); or a file name. The effect of
providing a file name is as described for the --output option of the
"gnuplot" command.

The --silent flag suppresses the usual text output. This might be used in
conjunction with one or other of the distribution test options: the test
statistic and its p-value are recorded, and can be retrieved using the
accessors "$test" and "$pvalue". It might also be used along with the --plot
option if you just want a histogram and don't care to see the accompanying
text.

Note that gretl does not have a function that matches this command, but it
is possible to use the "aggregate" function to achieve the same purpose. In
addition, the frequency distribution constructed by freq can be obtained in
matrix form via the "$result" accessor.

Menu path:    /Variable/Frequency distribution

# funcerr Programming

Argument:   [ message ] 

Applicable only in the context of a user-defined function (see "function").
Causes execution of the current function to terminate with an error
condition flagged.

The optional message argument can take the form of a string literal or the
name of a string variable; if present it is printed as part of the error
message shown to the caller of the function.

See also the closely related function, "errorif".

# function Programming

Argument:   fnname 

Opens a block of statements in which a function is defined. This block must
be closed with end function. (An exception is the case when a user-defined
function shall be deleted, which is achieved by the single command line
function foo delete for a function named "foo".) See chapter 14 of the Gretl
User's Guide for details.

# garch Estimation

Arguments:  p q ; depvar [ indepvars ] 
Options:    --robust (robust standard errors)
            --verbose (print details of iterations)
            --quiet (don't print anything)
            --vcv (print covariance matrix)
            --nc (do not include a constant)
            --stdresid (standardize the residuals)
            --fcp (use Fiorentini, Calzolari, Panattoni algorithm)
            --arma-init (initial variance parameters from ARMA)
Examples:   garch 1 1 ; y
            garch 1 1 ; y 0 x1 x2 --robust
            See also garch.inp, sw_ch14.inp

Estimates a GARCH model (GARCH = Generalized Autoregressive Conditional
Heteroskedasticity), either a univariate model or, if indepvars are
specified, including the given exogenous variables. The integer values p and
q (which may be given in numerical form or as the names of pre-existing
scalar variables) represent the lag orders in the conditional variance
equation:

  h(t) = a(0) + sum(i=1 to q) a(i)*u(t-i)^2 + sum(j=1 to p) b(j)*h(t-j)

The parameter p therefore represents the Generalized (or "AR") order, while
q represents the regular ARCH (or "MA") order. If p is non-zero, q must also
be non-zero otherwise the model is unidentified. However, you can estimate a
regular ARCH model by setting q to a positive value and p to zero. The sum
of p and q must be no greater than 5. Note that a constant is automatically
included in the mean equation unless the --nc option is given.

By default native gretl code is used in estimation of GARCH models, but you
also have the option of using the algorithm of Fiorentini, Calzolari and
Panattoni (1996). The former uses the BFGS maximizer while the latter uses
the information matrix to maximize the likelihood, with fine-tuning via the
Hessian.

Several variant estimators of the covariance matrix are available with this
command. By default, the Hessian is used unless the --robust option is
given, in which case the QML (White) covariance matrix is used. Other
possibilities (e.g. the information matrix, or the Bollerslev-Wooldridge
estimator) can be specified using the "set" command.

By default, the estimates of the variance parameters are initialized using
the unconditional error variance from initial OLS estimation for the
constant, and small positive values for the coefficients on the past values
of the squared error and the error variance. The flag --arma-init calls for
the starting values of these parameters to be set using an initial ARMA
model, exploiting the relationship between GARCH and ARMA set out in Chapter
21 of Hamilton's Time Series Analysis. In some cases this may improve the
chances of convergence.

The GARCH residuals and estimated conditional variance can be retrieved as
$uhat and $h respectively. For example, to get the conditional variance:

	series ht = $h

If the --stdresid option is given, the $uhat values are divided by the
square root of h_t.

Menu path:    /Model/Univariate time series/GARCH

# genr Dataset

Arguments:  newvar = formula 

NOTE: this command has undergone numerous changes and enhancements since the
following help text was written, so for comprehensive and updated info on
this command you'll want to refer to chapter 10 of the Gretl User's Guide.
On the other hand, this help does not contain anything actually erroneous,
so take the following as "you have this, plus more".

In the appropriate context, series, scalar, matrix, string, bundle and array
are synonyms for this command.

Creates new variables, often via transformations of existing variables. See
also "diff", "logs", "lags", "ldiff", "sdiff" and "square" for shortcuts. In
the context of a genr formula, existing variables must be referenced by
name, not ID number. The formula should be a well-formed combination of
variable names, constants, operators and functions (described below). Note
that further details on some aspects of this command can be found in chapter
10 of the Gretl User's Guide.

A genr command may yield either a series or a scalar result. For example,
the formula x2 = x * 2 naturally yields a series if the variable x is a
series and a scalar if x is a scalar. The formulae x = 0 and mx = mean(x)
naturally return scalars. Under some circumstances you may want to have a
scalar result expanded into a series or vector. You can do this by using
series as an "alias" for the genr command. For example, series x = 0
produces a series all of whose values are set to 0. You can also use scalar
as an alias for genr. It is not possible to coerce a vector result into a
scalar, but use of this keyword indicates that the result should be a
scalar: if it is not, an error occurs.

When a formula yields a series result, the range over which the result is
written to the target variable depends on the current sample setting. It is
possible, therefore, to define a series piecewise using the smpl command in
conjunction with genr.

Supported arithmetical operators are, in order of precedence: ^
(exponentiation); *, / and % (modulus or remainder); + and -.

The available Boolean operators are (again, in order of precedence): !
(negation), && (logical AND), || (logical OR), >, <, == (is equal to), >=
(greater than or equal), <= (less than or equal) and != (not equal). The
Boolean operators can be used in constructing dummy variables: for instance
(x > 10) returns 1 if x > 10, 0 otherwise.

Built-in constants are pi and NA. The latter is the missing value code: you
can initialize a variable to the missing value with scalar x = NA.

The genr command supports a wide range of mathematical and statistical
functions, including all the common ones plus several that are special to
econometrics. In addition it offers access to numerous internal variables
that are defined in the course of running regressions, doing hypothesis
tests, and so on. For a listing of functions and accessors, type "help
functions".

Besides the operators and functions noted above there are some special uses
of "genr":

  "genr time" creates a time trend variable (1,2,3,...) called "time". "genr
  index" does the same thing except that the variable is called index.

  "genr dummy" creates dummy variables up to the periodicity of the data. In
  the case of quarterly data (periodicity 4), the program creates dq1 = 1
  for first quarter and 0 in other quarters, dq2 = 1 for the second quarter
  and 0 in other quarters, and so on. With monthly data the dummies are
  named dm1, dm2, and so on; with daily data they are named dd1, dd2, and so
  on; and with other frequencies the names are dummy_1, dummy_2, etc.

  "genr unitdum" and "genr timedum" create sets of special dummy variables
  for use with panel data. The first codes for the cross-sectional units and
  the second for the time period of the observations.

Note: In the command-line program, "genr" commands that retrieve
model-related data always reference the model that was estimated most
recently. This is also true in the GUI program, if one uses "genr" in the
"gretl console" or enters a formula using the "Define new variable" option
under the Add menu in the main window. With the GUI, however, you have the
option of retrieving data from any model currently displayed in a window
(whether or not it's the most recent model). You do this under the "Save"
menu in the model's window.

The special variable obs serves as an index of the observations. For
instance series dum = (obs==15) will generate a dummy variable that has
value 1 for observation 15, 0 otherwise. You can also use this variable to
pick out particular observations by date or name. For example, series d =
(obs>1986:4), series d = (obs>"2008-04-01"), or series d = (obs=="CA"). If
daily dates or observation labels are used in this context, they should be
enclosed in double quotes. Quarterly and monthly dates (with a colon) may be
used unquoted. Note that in the case of annual time series data, the year is
not distinguishable syntactically from a plain integer; therefore if you
wish to compare observations against obs by year you must use the function
obsnum to convert the year to a 1-based index value, as in series d =
(obs>obsnum(1986)).

Scalar values can be pulled from a series in the context of a genr formula,
using the syntax varname[obs]. The obs value can be given by number or date.
Examples: x[5], CPI[1996:01]. For daily data, the form YYYY-MM-DD should be
used, e.g. ibm[1970-01-23].

An individual observation in a series can be modified via genr. To do this,
a valid observation number or date, in square brackets, must be appended to
the name of the variable on the left-hand side of the formula. For example,
genr x[3] = 30 or genr x[1950:04] = 303.7.

  Formula                Comment
  -------                -------
  y = x1^3               x1 cubed
  y = ln((x1+x2)/x3)     
  z = x>y                z(t) = 1 if x(t) > y(t), otherwise 0
  y = x(-2)              x lagged 2 periods
  y = x(+2)              x led 2 periods
  y = diff(x)            y(t) = x(t) - x(t-1)
  y = ldiff(x)           y(t) = log x(t) - log x(t-1), the instantaneous rate 
                         of growth of x
  y = sort(x)            sorts x in increasing order and stores in y
  y = dsort(x)           sort x in decreasing order
  y = int(x)             truncate x and store its integer value as y
  y = abs(x)             store the absolute values of x
  y = sum(x)             sum x values excluding missing NA entries
  y = cum(x)             cumulation: y(t) = the sum from s=1 to s=t of x(s) 
  aa = $ess              set aa equal to the Error Sum of Squares from last 
                         regression
  x = $coeff(sqft)       grab the estimated coefficient on the variable sqft 
                         from the last regression
  rho4 = $rho(4)         grab the 4th-order autoregressive coefficient from 
                         the last model (presumes an ar model)
  cvx1x2 = $vcv(x1, x2)  grab the estimated coefficient covariance of vars x1 
                         and x2 from the last model
  foo = uniform()        uniform pseudo-random variable in range 0-1
  bar = 3 * normal()     normal pseudo-random variable, mu = 0, sigma = 3
  samp = ok(x)           = 1 for observations where x is not missing.

Menu path:    /Add/Define new variable
Other access: Main window pop-up menu

# gmm Estimation

Options:    --two-step (two step estimation)
            --iterate (iterated GMM)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print anything)
            --lbfgs (use L-BFGS-B instead of regular BFGS)
Examples:   hall_cbapm.inp

Performs Generalized Method of Moments (GMM) estimation using the BFGS
(Broyden, Fletcher, Goldfarb, Shanno) algorithm. You must specify one or
more commands for updating the relevant quantities (typically GMM
residuals), one or more sets of orthogonality conditions, an initial matrix
of weights, and a listing of the parameters to be estimated, all enclosed
between the tags gmm and end gmm. Any options should be appended to the end
gmm line.

Please see chapter 27 of the Gretl User's Guide for details on this command.
Here we just illustrate with a simple example.

	gmm e = y - X*b
	  orthog e ; W
	  weights V
	  params b
	end gmm

In the example above we assume that y and X are data matrices, b is an
appropriately sized vector of parameter values, W is a matrix of
instruments, and V is a suitable matrix of weights. The statement

	orthog e ; W

indicates that the residual vector e is in principle orthogonal to each of
the instruments composing the columns of W.

Parameter names

In estimating a nonlinear model it is often convenient to name the
parameters tersely. In printing the results, however, it may be desirable to
use more informative labels. This can be achieved via the additional keyword
param_names within the command block. For a model with k parameters the
argument following this keyword should be a double-quoted string literal
holding k space-separated names, the name of a string variable that holds k
such names, or the name of an array of k strings.

Menu path:    /Model/Instrumental variables/GMM

# gnuplot Graphs

Arguments:  yvars xvar [ dumvar ] 
Options:    --with-lines[=varspec] (use lines, not points)
            --with-lp[=varspec] (use lines and points)
            --with-impulses[=varspec] (use vertical lines)
            --with-steps[=varspec] (use perpendicular line segments)
            --time-series (plot against time)
            --single-yaxis (force use of just one y-axis)
            --ylogscale[=base] (use log scale for vertical axis)
            --dummy (see below)
            --fit=fitspec (see below)
            --font=fontspec (see below)
            --band=bandspec (see below)
            --band-style=style (see below)
            --matrix=name (plot columns of named matrix)
            --output=filename (send output to specified file)
            --input=filename (take input from specified file)
Examples:   gnuplot y1 y2 x
            gnuplot x --time-series --with-lines
            gnuplot wages educ gender --dummy
            gnuplot y x --fit=quadratic
            gnuplot y1 y2 x --with-lines=y2

The variables in the list yvars are graphed against xvar. For a time series
plot you may either give time as xvar or use the option flag --time-series.
See also the "plot" and "panplot" commands.

By default, data-points are shown as points; this can be overridden by
giving one of the options --with-lines, --with-lp, --with-impulses or
--with-steps. If more than one variable is to be plotted on the y axis, the
effect of these options may be confined to a subset of the variables by
using the varspec parameter. This should take the form of a comma-separated
listing of the names or numbers of the variables to be plotted with lines or
impulses respectively. For instance, the final example above shows how to
plot y1 and y2 against x, such that y2 is represented by a line but y1 by
points.

If the --dummy option is selected, exactly three variables should be given:
a single y variable, an x variable, and dvar, a discrete variable. The
effect is to plot yvar against xvar with the points shown in different
colors depending on the value of dvar at the given observation.

You can choose the scale for the y axis to be logarithmic rather than linear
by using the --ylogscale option, together with a base parameter. For
example,

	gnuplot y x --ylogscale=2

plots the data such that the vertical axis is expressed as powers of 2. If
the base is omitted, it defaults to 10.

Taking data from a matrix

Generally, the arguments yvars and xvar are required, and refer to series in
the current dataset (given either by name or ID number). But if a named
matrix is supplied via the --matrix option these arguments become optional:
if the specified matrix has k columns, by default the first k - 1 columns
are treated as the yvars and the last column as xvar. If the --time-series
option is given, however, all k columns are plotted against time. If you
wish to plot selected columns of the matrix, you should specify yvars and
xvar in the form of 1-based column numbers. For example if you want a
scatterplot of column 2 of matrix M against column 1, you can do:

	gnuplot 2 1 --matrix=M

Showing a line of best fit

The --fit option is applicable only for bivariate scatterplots and single
time-series plots. The default behavior for a scatterplot is to show the OLS
fit if the slope coefficient is significant at the 10 percent level, while
the default behavior for time-series is not to show any fitted line. You can
call for different behavior by using this option along with one of the
following fitspec parameter values. Note that if the plot is a single time
series the place of x is taken by time.

  linear: show the OLS fit regardless of its level of statistical
  significance.

  none: don't show any fitted line.

  inverse, quadratic, cubic, semilog or linlog: show a fitted line based on
  a regression of the specified type. By semilog, we mean a regression of
  log y on x; the fitted line represents the conditional expectation of y,
  obtained by exponentiation. By linlog we mean a regression of y on the log
  of x.

  loess: show the fit from a robust locally weighted regression (also is
  sometimes known as "lowess").

Plotting a band

The --band option can be used for plotting zero or more series along with a
"band" of some sort (typically representing a confidence interval). This
option requires two comma-separated parameters: the name or ID number of a
series representing the center of the band, and the name or ID of a series
giving the width of the band: the effect is to draw a band with y
coordinates equal to center minus width and center plus width. An optional
third parameter (again, comma-separated) can be used to give a multiplier
for the width dimension, in the form of a numerical constant or the name of
a scalar variable. So for example, the following example plots y along with
a band of plus or minus 1.96 times se_y:

	gnuplot y --time-series --band=y,se_y,1.96 --with-lines

When the --band option is given, the companion option --band-style can be
used to control the band's representation. By default the upper and lower
limits are shown as solid lines, but the parameters fill, dash, bars or step
cause the band to be drawn as a shaded area, using dashed lines, using error
bars or using steps, respectively. In addition a color specification can be
appended (following a comma) or substituted. Here are some style examples:

	gnuplot ... --band-style=fill
	gnuplot ... --band-style=dash,0xbbddff
	gnuplot ... --band-style=,black
	gnuplot ... --band-style=bars,blue

The first example produces a shaded area in the default color; the second
switches to dashed lines with a specified blue-gray color; the third uses
solid black lines; and the last shows blue bars. Note that colors can be
given as either hexadecimal RGB values or by name; you can access the list
of color-names recognized by gnuplot by issuing the command "show
colornames" in gnuplot itself, or in the gretl console by doing

	eval readfile("@gretldir/data/gnuplot/gpcolors.txt")

Recession bars

The "band" options described above can also be used to add "recession bars"
to a plot. By this we mean vertical bars occupying the full y-dimension of
the plot and indicating the presence (bar) or absence (no bar) of some
qualitative feature in a time-series plot. Such bars are commonly used to
flag periods of recession; they could also be used to indicate periods of
war, or anything that can be coded in a 0/1 dummy variable.

In this context the --band option requires a single parameter: the
identifier of a series with values 0 and 1, where 1 indicates "on" and 0
"off". The --band-style option may be used to specify a color for the bars,
given in hexadecimal form or as the name of a color known to gnuplot (see
the previous section). An example showing a single bar is given below:

	open AWM17 --quiet
	series dum = obs >= 1990:1 && obs <= 1994:2
	gnuplot YER URX --with-lines --time-series \
	  --band=dum --band-style=0xcccccc --output=display \
	  {set key top left;}

Controlling the output

In interactive mode the plot is displayed immediately. In batch mode the
default behavior is that a gnuplot command file is written in the user's
working directory, with a name on the pattern gpttmpN.plt, starting with N =
01. The actual plots may be generated later using gnuplot (under MS Windows,
wgnuplot). This behavior can be modified by use of the --output=filename
option. This option controls the filename used, and at the same time allows
you to specify a particular output format via the three-letter extension of
the file name, as follows: .eps results in the production of an Encapsulated
PostScript (EPS) file; .pdf produces PDF; .png produces PNG format, .emf
calls for EMF (Enhanced MetaFile), .fig calls for an Xfig file, and .svg for
SVG (Scalable Vector Graphics). If the dummy filename "display" is given
then the plot is shown on screen as in interactive mode. If a filename with
any extension other than those just mentioned is given, a gnuplot command
file is written.

Specifying a font

The --font option can be used to specify a particular font for the plot. The
fontspec parameter should take the form of the name of a font, optionally
followed by a size in points separated from the name by a comma or space,
all wrapped in double quotes, as in

	--font="serif,12"

Note that the fonts available to gnuplot will vary by platform, and if
you're writing a plot command that is intended to be portable it is best to
restrict the font name to the generic sans or serif.

Adding gnuplot commands

A further option to this command is available: following the specification
of the variables to be plotted and the option flag (if any), you may add
literal gnuplot commands to control the appearance of the plot (for example,
setting the plot title and/or the axis ranges). These commands should be
enclosed in braces, and each gnuplot command must be terminated with a
semi-colon. A backslash may be used to continue a set of gnuplot commands
over more than one line. Here is an example of the syntax:

	{ set title 'My Title'; set yrange [0:1000]; }

Menu path:    /View/Graph specified vars
Other access: Main window pop-up menu, graph button on toolbar

# graphpg Graphs

Variants:   graphpg add
            graphpg fontscale value
            graphpg show
            graphpg free
            graphpg --output=filename

The session "graph page" will work only if you have the LaTeX typesetting
system installed, and are able to generate and view PDF or PostScript
output.

In the session icon window, you can drag up to eight graphs onto the graph
page icon. When you double-click on the graph page (or right-click and
select "Display"), a page containing the selected graphs will be composed
and opened in a suitable viewer. From there you should be able to print the
page.

To clear the graph page, right-click on its icon and select "Clear".

Note that on systems other than MS Windows, you may have to adjust the
setting for the program used to view PDF or PostScript files. Find that
under the "Programs" tab in the gretl Preferences dialog box (under the
Tools menu in the main window).

It's also possible to operate on the graph page via script, or using the
console (in the GUI program). The following commands and options are
supported:

To add a graph to the graph page, issue the command graphpg add after saving
a named graph, as in

	grf1 <- gnuplot Y X
	graphpg add

To display the graph page: graphpg show.

To clear the graph page: graphpg free.

To adjust the scale of the font used in the graph page, use graphpg
fontscale scale, where scale is a multiplier (with a default of 1.0). Thus
to make the font size 50 percent bigger than the default you can do

	graphpg fontscale 1.5

To call for printing of the graph page to file, use the flag --output= plus
a filename; the filename should have the suffix ".pdf", ".ps" or ".eps". For
example:

	graphpg --output="myfile.pdf"

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification.

In this context the output uses colored lines by default; to use dot/dash
patterns instead of colors you can append the --monochrome flag.

# heckit Estimation

Arguments:  depvar indepvars ; selection equation 
Options:    --quiet (suppress printing of results)
            --two-step (perform two-step estimation)
            --vcv (print covariance matrix)
            --opg (OPG standard errors)
            --robust (QML standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --verbose (print extra output)
Examples:   heckit y 0 x1 x2 ; ys 0 x3 x4
            See also heckit.inp

Heckman-type selection model. In the specification, the list before the
semicolon represents the outcome equation, and the second list represents
the selection equation. The dependent variable in the selection equation (ys
in the example above) must be a binary variable.

By default, the parameters are estimated by maximum likelihood. The
covariance matrix of the parameters is computed using the negative inverse
of the Hessian. If two-step estimation is desired, use the --two-step
option. In this case, the covariance matrix of the parameters of the outcome
equation is appropriately adjusted as per Heckman (1979).

Menu path:    /Model/Limited dependent variable/Heckit

# help Utilities

Variants:   help
            help functions
            help command
            help function
Option:     --func (select functions help)

If no arguments are given, prints a list of available commands. If the
single argument "functions" is given, prints a list of available functions
(see "genr").

help command describes command (e.g. help smpl). help function describes
function (e.g. help ldet). Some functions have the same names as related
commands (e.g. diff): in that case the default is to print help for the
command, but you can get help on the function by using the --func option.

Menu path:    /Help

# hfplot Graphs

Arguments:  hflist [ ; lflist ] 
Options:    --with-lines (plot with lines)
            --time-series (put time on x-axis)
            --output=filename (send output to specified file)

Provides a means of plotting a high-frequency series, possibly along with
one or more series observed at the base frequency of the dataset. The first
argument should be a "MIDAS list"; the optional additional lflist terms,
following a semicolon, should be regular ("low-frequency") series.

For details on the effect of the --output option, please see the "gnuplot"
command.

# hsk Estimation

Arguments:  depvar indepvars 
Options:    --no-squares (see below)
            --vcv (print covariance matrix)
            --quiet (don't print anything)

This command is applicable where heteroskedasticity is present in the form
of an unknown function of the regressors which can be approximated by a
quadratic relationship. In that context it offers the possibility of
consistent standard errors and more efficient parameter estimates as
compared with OLS.

The procedure involves (a) OLS estimation of the model of interest, followed
by (b) an auxiliary regression to generate an estimate of the error
variance, then finally (c) weighted least squares, using as weight the
reciprocal of the estimated variance.

In the auxiliary regression (b) we regress the log of the squared residuals
from the first OLS on the original regressors and their squares (by
default), or just on the original regressors (if the --no-squares option is
given). The log transformation is performed to ensure that the estimated
variances are all non-negative. Call the fitted values from this regression
u^*. The weight series for the final WLS is then formed as 1/exp(u^*).

Menu path:    /Model/Other linear models/Heteroskedasticity corrected

# hurst Statistics

Argument:   series 
Option:     --plot=mode-or-filename (see below)

Calculates the Hurst exponent (a measure of persistence or long memory) for
a time-series variable having at least 128 observations. The result
(together with its standard error) can be retrieved via the "$result"
accessor.

The Hurst exponent is discussed by Mandelbrot (1983). In theoretical terms
it is the exponent, H, in the relationship

  RS(x) = an^H

where RS is the "rescaled range" of the variable x in samples of size n and
a is a constant. The rescaled range is the range (maximum minus minimum) of
the cumulated value or partial sum of x over the sample period (after
subtraction of the sample mean), divided by the sample standard deviation.

As a reference point, if x is white noise (zero mean, zero persistence) then
the range of its cumulated "wandering" (which forms a random walk), scaled
by the standard deviation, grows as the square root of the sample size,
giving an expected Hurst exponent of 0.5. Values of the exponent
significantly in excess of 0.5 indicate persistence, and values less than
0.5 indicate anti-persistence (negative autocorrelation). In principle the
exponent is bounded by 0 and 1, although in finite samples it is possible to
get an estimated exponent greater than 1.

In gretl, the exponent is estimated using binary sub-sampling: we start with
the entire data range, then the two halves of the range, then the four
quarters, and so on. For sample sizes smaller than the data range, the RS
value is the mean across the available samples. The exponent is then
estimated as the slope coefficient in a regression of the log of RS on the
log of sample size.

By default, if the program is not in batch mode a plot of the rescaled range
is shown. This can be adjusted via the --plot option. The acceptable
parameters to this option are none (to suppress the plot); display (to
display a plot even when in batch mode); or a file name. The effect of
providing a file name is as described for the --output option of the
"gnuplot" command.

Menu path:    /Variable/Hurst exponent

# if Programming

Flow control for command execution. Three sorts of construction are
supported, as follows.

	# simple form
	if condition
	    commands
	endif

	# two branches
	if condition
	    commands1
	else
	    commands2
	endif

	# three or more branches
	if condition1
	    commands1
	elif condition2
	    commands2
	else
	    commands3
	endif

"condition" must be a Boolean expression, for the syntax of which see
"genr". More than one "elif" block may be included. In addition, if ...
endif blocks may be nested.

# include Programming

Argument:   filename 
Option:     --force (force re-reading from file)
Examples:   include myfile.inp
            include sols.gfn

Intended for use in a command script, primarily for including definitions of
functions. filename should have the extension inp (a plain-text script) or
gfn (a gretl function package). The commands in filename are executed then
control is returned to the main script.

The --force option is specific to gfn files: its effect is to force gretl to
re-read the function package from file even if it is already loaded into
memory. (Plain inp files are always read and processed in response to this
command.)

See also "run".

# info Dataset

Prints out any supplementary information stored with the current datafile.

Menu path:    /Data/Dataset info
Other access: Data browser windows

# intreg Estimation

Arguments:  minvar maxvar indepvars 
Options:    --quiet (suppress printing of results)
            --verbose (print details of iterations)
            --robust (robust standard errors)
            --opg (see below)
            --cluster=clustvar (see "logit" for explanation)
Examples:   intreg lo hi const x1 x2
            See also wtp.inp

Estimates an interval regression model. This model arises when the dependent
variable is imperfectly observed for some (possibly all) observations. In
other words, the data generating process is assumed to be

  y* = x b + u

but we only observe m <= y* <= M (the interval may be left- or
right-unbounded). Note that for some observations m may equal M. The
variables minvar and maxvar must contain NAs for left- and right-unbounded
observations, respectively.

The model is estimated by maximum likelihood, assuming normality of the
disturbance term.

By default, standard errors are computed using the negative inverse of the
Hessian. If the --robust flag is given, then QML or Huber-White standard
errors are calculated instead. In this case the estimated covariance matrix
is a "sandwich" of the inverse of the estimated Hessian and the outer
product of the gradient. Alternatively, the --opg option can be given, in
which case standard errors are based on the outer product of the gradient
alone.

Menu path:    /Model/Limited dependent variable/Interval regression

# johansen Tests

Arguments:  order ylist [ ; xlist ] [ ; rxlist ] 
Options:    --nc (no constant)
            --rc (restricted constant)
            --uc (unrestricted constant)
            --crt (constant and restricted trend)
            --ct (constant and unrestricted trend)
            --seasonals (include centered seasonal dummies)
            --asy (record asymptotic p-values)
            --quiet (print just the tests)
            --silent (don't print anything)
            --verbose (print details of auxiliary regressions)
Examples:   johansen 2 y x
            johansen 4 y x1 x2 --verbose
            johansen 3 y x1 x2 --rc
            See also hamilton.inp, denmark.inp

Carries out the Johansen test for cointegration among the variables in ylist
for the given lag order. For details of this test see chapter 33 of the
Gretl User's Guide or Hamilton (1994), Chapter 20. P-values are computed via
Doornik's gamma approximation (Doornik, 1998). Two sets of p-values are
shown for the trace test, straight asymptotic values and values adjusted for
the sample size. By default the "$pvalue" accessor gets the adjusted
variant, but the --asy flag may be used to record the asymptotic values
instead.

The inclusion of deterministic terms in the model is controlled by the
option flags. The default if no option is specified is to include an
"unrestricted constant", which allows for the presence of a non-zero
intercept in the cointegrating relations as well as a trend in the levels of
the endogenous variables. In the literature stemming from the work of
Johansen (see for example his 1995 book) this is often referred to as "case
3". The first four options given above, which are mutually exclusive,
produce cases 1, 2, 4 and 5 respectively. The meaning of these cases and the
criteria for selecting a case are explained in chapter 33 of the Gretl
User's Guide.

The optional lists xlist and rxlist allow you to control for specified
exogenous variables: these enter the system either unrestrictedly (xlist) or
restricted to the cointegration space (rxlist). These lists are separated
from ylist and from each other by semicolons.

The --seasonals option, which may be combined with any of the other options,
specifies the inclusion of a set of centered seasonal dummy variables. This
option is available only for quarterly or monthly data.

The following table is offered as a guide to the interpretation of the
results shown for the test, for the 3-variable case. H0 denotes the null
hypothesis, H1 the alternative hypothesis, and c the number of cointegrating
relations.

         Rank     Trace test         Lmax test
                  H0     H1          H0     H1
         ---------------------------------------
          0      c = 0  c = 3       c = 0  c = 1
          1      c = 1  c = 3       c = 1  c = 2
          2      c = 2  c = 3       c = 2  c = 3
         ---------------------------------------

See also the "vecm" command, and "coint" if you want the Engle-Granger
cointegration test.

Menu path:    /Model/Multivariate time series

# join Dataset

Arguments:  filename varname 
Options:    --data=column-name (see below)
            --filter=expression (see below)
            --ikey=inner-key (see below)
            --okey=outer-key (see below)
            --aggr=method (see below)
            --tkey=column-name,format-string (see below)
            --verbose (report on progress)

This command imports one or more data series from the source filename (which
must be either a delimited text data file or a "native" gretl data file)
under the name varname. For details please see chapter 7 of the Gretl User's
Guide; here we just give a brief summary of the available options. See also
"append" for simpler joining operations.

The --data option can be used to specify the column heading of the data in
the source file, if this differs from the name by which the data should be
known in gretl.

The --filter option can be used to specify a criterion for filtering the
source data (that is, selecting a subset of observations).

The --ikey and --okey options can be used to specify a mapping between
observations in the current dataset and observations in the source data (for
example, individuals can be matched against the household to which they
belong).

The --aggr option is used when the mapping between observations in the
current dataset and the source is not one-to-one.

The --tkey option is applicable only when the current dataset has a
time-series structure. It can be used to specify the name of a column
containing dates to be matched to the dataset and/or the format in which
dates are represented in that column.

Importing more than one series at once

The "join" command can handle the importation of several series at once.
This happens when (a) the varname argument is a space-separated list of
names rather than a single name, or (b) when it points to an array of
strings: the elements of this array should be the names of the series to
import.

This methods has some limitations, however: the --data option is not
available. When importing multiple series you are obliged to accept their
"outer" names. The other options apply uniformly to all the series imported
via a given command.

# kpss Tests

Arguments:  order varlist 
Options:    --trend (include a trend)
            --seasonals (include seasonal dummies)
            --verbose (print regression results)
            --quiet (suppress printing of results)
            --difference (use first difference of variable)
Examples:   kpss 8 y
            kpss 4 x1 --trend

For use of this command with panel data please see the final section in this
entry.

Computes the KPSS test (Kwiatkowski et al, Journal of Econometrics, 1992)
for stationarity, for each of the specified variables (or their first
difference, if the --difference option is selected). The null hypothesis is
that the variable in question is stationary, either around a level or, if
the --trend option is given, around a deterministic linear trend.

The order argument determines the size of the window used for Bartlett
smoothing. If a negative value is given this is taken as a signal to use an
automatic window size of 4(T/100)^0.25, where T is the sample size.

If the --verbose option is chosen the results of the auxiliary regression
are printed, along with the estimated variance of the random walk component
of the variable.

The critical values shown for the test statistic are based on response
surfaces estimated in the manner set out by Sephton (Economics Letters,
1995), which are more accurate for small samples than the values given in
the original KPSS article. When the test statistic lies between the 10
percent and 1 percent critical values a p-value is shown; this is obtained
by linear interpolation and should not be taken too literally. See the
"kpsscrit" function for a means of obtaining these critical values
programmatically.

Panel data

When the kpss command is used with panel data, to produce a panel unit root
test, the applicable options and the results shown are somewhat different.
While you may give a list of variables for testing in the regular
time-series case, with panel data only one variable may be tested per
command. And the --verbose option has a different meaning: it produces a
brief account of the test for each individual time series (the default being
to show only the overall result).

When possible, the overall test (null hypothesis: the series in question is
stationary for all the panel units) is calculated using the method of Choi
(Journal of International Money and Finance, 2001). This is not always
straightforward, the difficulty being that while the Choi test is based on
the p-values of the tests on the individual series, we do not currently have
a means of calculating p-values for the KPSS test statistic; we must rely on
a few critical values.

If the test statistic for a given series falls between the 10 percent and 1
percent critical values, we are able to interpolate a p-value. But if the
test falls short of the 10 percent value, or exceeds the 1 percent value, we
cannot interpolate and can at best place a bound on the global Choi test. If
the individual test statistic falls short of the 10 percent value for some
units but exceeds the 1 percent value for others, we cannot even compute a
bound for the global test.

Menu path:    /Variable/Unit root tests/KPSS test

# labels Dataset

Variants:   labels [ varlist ]
            labels --to-file=filename
            labels --from-file=filename
            labels --delete
Examples:   oprobit.inp

In the first form, prints out the informative labels (if present) for the
series in varlist, or for all series in the dataset if varlist is not
specified.

With the option --to-file, writes to the named file the labels for all
series in the dataset, one per line. If no labels are present an error is
flagged; if some series have labels and others do not, a blank line is
printed for series with no label. The output file will be written in the
currently set "workdir", unless the filename string contains a full path
specification.

With the option --from-file, reads the specified file (which should be plain
text) and assigns labels to the series in the dataset, reading one label per
line and taking blank lines to indicate blank labels.

The --delete option does what you'd expect: it removes all the series labels
from the dataset.

Menu path:    /Data/Variable labels

# lad Estimation

Arguments:  depvar indepvars 
Options:    --vcv (print covariance matrix)
            --no-vcv (don't compute covariance matrix)
            --quiet (don't print anything)

Calculates a regression that minimizes the sum of the absolute deviations of
the observed from the fitted values of the dependent variable. Coefficient
estimates are derived using the Barrodale-Roberts simplex algorithm; a
warning is printed if the solution is not unique.

Standard errors are derived using the bootstrap procedure with 500 drawings.
The covariance matrix for the parameter estimates, printed when the --vcv
flag is given, is based on the same bootstrap. Since this is quite an
expensive operation, the --no-vcv option is provided for the case where the
covariance matrix is not required; when this option is given standard errors
will not be available.

Note that this method can be slow when the sample is large or there are many
regressors; in that case it may be preferable to use the "quantreg" command.
Given a dependent variable y and a list of regressors X, the following
commands are basically equivalent, except that the quantreg method uses the
faster Frisch-Newton algorithm and provides analytical rather than
bootstrapped standard errors.

	lad y const X
	quantreg 0.5 y const X

Menu path:    /Model/Robust estimation/Least Absolute Deviation

# lags Transformations

Arguments:  [ order ; ] laglist 
Option:     --bylag (order terms by lag)
Examples:   lags x y
            lags 12 ; x y
            lags 4 ; x1 x2 x3 --bylag
            See also sw_ch12.inp, sw_ch14.inp

Creates new series which are lagged values of each of the series in varlist.
By default the number of lags created equals the periodicity of the data.
For example, if the periodicity is 4 (quarterly), the command "lags x"
creates

	x_1 = x(t-1)
	x_2 = x(t-2)
	x_3 = x(t-3)
	x_4 = x(t-4)

The number of lags created can be controlled by the optional first parameter
(which, if present, must be followed by a semicolon).

The --bylag option is meaningful only if varlist contains more than one
series and the maximum lag order is greater than 1. By default the lagged
terms are added to the dataset by variable: first all lags of the first
series, then all lags of the second series, and so on. But if --bylag is
given, the ordering is by lags: first lag 1 of all the listed series, then
lag 2 of all the list series, and so on.

This facility is also available as a function: see "lags".

Menu path:    /Add/Lags of selected variables

# ldiff Transformations

Argument:   varlist 

The first difference of the natural log of each series in varlist is
obtained and the result stored in a new series with the prefix ld_. Thus
"ldiff x y" creates the new variables

	ld_x = log(x) - log(x(-1))
	ld_y = log(y) - log(y(-1))

Menu path:    /Add/Log differences of selected variables

# leverage Tests

Options:    --save (save the resulting series)
            --overwrite (OK to overwrite existing series)
            --quiet (don't print results)
            --plot=mode-or-filename (see below)
Examples:   leverage.inp

Must follow an "ols" command. Calculates the leverage (h, which must lie in
the range 0 to 1) for each data point in the sample on which the previous
model was estimated. Displays the residual (u) for each observation along
with its leverage and a measure of its influence on the estimates, uh/(1 -
h). "Leverage points" for which the value of h exceeds 2k/n (where k is the
number of parameters being estimated and n is the sample size) are flagged
with an asterisk. For details on the concepts of leverage and influence see
Davidson and MacKinnon (1993), Chapter 2.

DFFITS values are also computed: these are Studentized residuals (residuals
divided by their standard errors) multiplied by the square root of h(1 - h).
They give a measure of the difference in fit for observation i depending on
whether or not that observation is included in the sample for estimation.
For more on this point see chapter 12 of Maddala's Introduction to
Econometrics or Belsley, Kuh and Welsch (1980). For more on Studentized
residuals see the section headed Accessor matrix below.

If the --save flag is given with this command, the leverage, influence and
DFFITS values are added to the current data set; in this context the --quiet
flag may be used to suppress the printing of results. The default names of
the saved series are, respectively, lever, influ and dffits. If series of
these names already exist, what happens depends on whether the --overwrite
option is given. If so, the existing series are overwritten; if not, the
names will be adjusted to ensure uniqueness. In the latter case the newly
generated series will always be the highest-numbered three series in the
dataset.

After execution, the "$test" accessor returns the cross-validation
criterion, which is defined as the sum of squared deviations of the
dependent variable from its forecast value, the forecast for each
observation being based on a sample from which that observation is excluded.
(This is known as the leave-one-out estimator). For a broader discussion of
the cross-validation criterion, see Davidson and MacKinnon's Econometric
Theory and Methods, pages 685-686, and the references therein.

By default, if this command is invoked interactively a plot of the leverage
and influence values is shown. This can be adjusted via the --plot option.
The acceptable parameters to this option are none (to suppress the plot);
display (to display a plot even when in script mode); or a file name. The
effect of providing a file name is as described for the --output option of
the "gnuplot" command.

Accessor matrix

Besides the --save option noted above, results from this command can be
retrieved in the form of a three-column matrix via the "$result" accessor.
The first two columns of this matrix contain leverage and influence values
(as with --save) but the third column holds Studentized residuals rather
than DFFITS values. These are "externally Studentized" or "jackknifed"
residuals -- that is, the standard error in the divisor for observation i
uses the residual mean square with that observation omitted. Such a residual
can be interpreted as a t statistic for the hypothesis that a 0/1 dummy
variable coding specifically for observation i would have a true coefficient
of zero. For further discussion of Studentized residuals see Chatterjee and
Hadi (1986).

DFFITS values may be obtained from the $result matrix as follows:

	R = $result
	dffits = R[,3] .* sqrt(R[,1] ./ (1-R[,1]))

Or using series:

	series h = $result[,1]  # leverage
	series sr = $result[,3] # Studentized residual
	series dffits = sr * sqrt(h/(1-h))

Menu path:    Model window, /Analysis/Influential observations

# levinlin Tests

Arguments:  order series 
Options:    --nc (test without a constant)
            --ct (with constant and trend)
            --quiet (suppress printing of results)
            --verbose (print per-unit results)
Examples:   levinlin 0 y
            levinlin 2 y --ct
            levinlin {2,2,3,3,4,4} y

Carries out the panel unit-root test described by Levin, Lin and Chu (2002).
The null hypothesis is that all of the individual time series exhibit a unit
root, and the alternative is that none of the series has a unit root. (That
is, a common AR(1) coefficient is assumed, although in other respects the
statistical properties of the series are allowed to vary across
individuals.)

By default the test ADF regressions include a constant; to suppress the
constant use the --nc option, or to add a linear trend use the --ct option.
(See the "adf" command for explanation of ADF regressions.)

The (non-negative) order for the test (governing the number of lags of the
dependent variable to include in the ADF regressions) may be given in either
of two forms. If a scalar value is given, this is applied to all the
individuals in the panel. The alternative is to provide a matrix containing
a specific lag order for each individual; this must be a vector with as many
elements as there are individuals in the current sample range. Such a matrix
can be specified by name, or constructed using braces as illustrated in the
last example above.

When the --verbose option is given, the following results are printed for
each unit in the panel: delta, the coefficient on the lagged level in each
ADF regression; s2e, the estimated variance of the innovations; and s2y, the
estimated long-run variance of the differenced series.

Note that panel unit-root tests can also be conducted using the "adf" and
"kpss" commands.

Menu path:    /Variable/Unit root tests/Levin-Lin-Chu test

# logistic Estimation

Arguments:  depvar indepvars 
Options:    --ymax=value (specify maximum of dependent variable)
            --robust (robust standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --vcv (print covariance matrix)
            --fixed-effects (see below)
            --quiet (don't print anything)
Examples:   logistic y const x
            logistic y const x --ymax=50

Logistic regression: carries out an OLS regression using the logistic
transformation of the dependent variable,

  log(y/(y* - y))

In the case of panel data the specification may include individual fixed
effects.

The dependent variable must be strictly positive. If all its values lie
between 0 and 1, the default is to use a y^* value (the asymptotic maximum
of the dependent variable) of 1; if its values lie between 0 and 100, the
default y^* is 100.

If you wish to set a different maximum, use the --ymax option. Note that the
supplied value must be greater than all of the observed values of the
dependent variable.

The fitted values and residuals from the regression are automatically
adjusted using the inverse of the logistic transformation:

  y =~ E(y* / (1 + exp(-x)))

where x represents either a fitted value or a residual from the OLS
regression using the logistic dependent variable. The reported values are
therefore comparable with the original dependent variable. The need for
approximation arises because the inverse transformation is nonlinear and
therefore does not conserve expectation.

The --fixed-effects option is applicable only if the dataset takes the form
of a panel. In that case we subtract the group means from the logistic
transform of the dependent variable and estimation proceeds as usual for
fixed effects.

Note that if the dependent variable is binary, you should use the "logit"
command instead.

Menu path:    /Model/Limited dependent variable/Logistic
Menu path:    /Model/Panel/FE logistic

# logit Estimation

Arguments:  depvar indepvars 
Options:    --robust (robust standard errors)
            --cluster=clustvar (clustered standard errors)
            --multinomial (estimate multinomial logit)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print results)
            --p-values (show p-values instead of slopes)
            --estrella (select pseudo-R-squared variant)
Examples:   keane.inp, oprobit.inp

If the dependent variable is a binary variable (all values are 0 or 1)
maximum likelihood estimates of the coefficients on indepvars are obtained
via the Newton-Raphson method. As the model is nonlinear the slopes depend
on the values of the independent variables. By default the slopes with
respect to each of the independent variables are calculated (at the means of
those variables) and these slopes replace the usual p-values in the
regression output. This behavior can be suppressed by giving the --p-values
option. The chi-square statistic tests the null hypothesis that all
coefficients are zero apart from the constant.

By default, standard errors are computed using the negative inverse of the
Hessian. If the --robust flag is given, then QML or Huber-White standard
errors are calculated instead. In this case the estimated covariance matrix
is a "sandwich" of the inverse of the estimated Hessian and the outer
product of the gradient; see chapter 10 of Davidson and MacKinnon (2004).
But if the --cluster option is given, then "cluster-robust" standard errors
are produced; see chapter 22 of the Gretl User's Guide for details.

By default the pseudo-R-squared statistic suggested by McFadden (1974) is
shown, but in the binary case if the --estrella option is given, the variant
recommended by Estrella (1998) is shown instead. This variant arguably
mimics more closely the properties of the regular R^2 in the context of
least-squares estimation.

If the dependent variable is not binary but is discrete, then by default it
is interpreted as an ordinal response, and Ordered Logit estimates are
obtained. However, if the --multinomial option is given, the dependent
variable is interpreted as an unordered response, and Multinomial Logit
estimates are produced. (In either case, if the variable selected as
dependent is not discrete an error is flagged.) In the multinomial case, the
accessor $mnlprobs is available after estimation, to get a matrix containing
the estimated probabilities of the outcomes at each observation
(observations in rows, outcomes in columns).

If you want to use logit for analysis of proportions (where the dependent
variable is the proportion of cases having a certain characteristic, at each
observation, rather than a 1 or 0 variable indicating whether the
characteristic is present or not) you should not use the "logit" command,
but rather construct the logit variable, as in

	series lgt_p = log(p/(1 - p))

and use this as the dependent variable in an OLS regression. See chapter 12
of Ramanathan (2002).

Menu path:    /Model/Limited dependent variable/Logit

# logs Transformations

Argument:   varlist 

The natural log of each of the series in varlist is obtained and the result
stored in a new series with the prefix l_ ("el" underscore). For example,
"logs x y" creates the new variables l_x = ln(x) and l_y = ln(y).

Menu path:    /Add/Logs of selected variables

# loop Programming

Argument:   control 
Options:    --progressive (enable special forms of certain commands)
            --verbose (echo commands and show confirmatory messages)
Examples:   loop 1000
            loop 1000 --progressive
            loop while essdiff > .00001
            loop i=1991..2000 --verbose
            loop for (r=-.99; r<=.99; r+=.01)
            loop foreach i xlist
            See also armaloop.inp, keane.inp

This command opens a special mode in which the program accepts commands to
be executed repeatedly. You exit the mode of entering loop commands with
"endloop": at this point the stacked commands are executed.

The parameter "control" may take any of five forms, as shown in the
examples: an integer number of times to repeat the commands within the loop;
"while" plus a boolean condition; a range of integer values for index
variable; "for" plus three expressions in parentheses, separated by
semicolons (which emulates the for statement in the C programming language);
or "foreach" plus an index variable and a list.

See chapter 13 of the Gretl User's Guide for further details and examples.
The effect of the --progressive option (which is designed for use in Monte
Carlo simulations) is explained there. Not all gretl commands may be used
within a loop; the commands available in this context are also set out
there.

By default, execution of commands proceeds more quietly within loops than in
other contexts. If you want more feedback on what's going on in a loop, give
the --verbose option.

# mahal Statistics

Argument:   varlist 
Options:    --quiet (don't print anything)
            --save (add distances to the dataset)
            --vcv (print covariance matrix)

Computes the Mahalanobis distances between the series in varlist. The
Mahalanobis distance is the distance between two points in a k-dimensional
space, scaled by the statistical variation in each dimension of the space.
For example, if p and q are two observations on a set of k variables with
covariance matrix C, then the Mahalanobis distance between the observations
is given by

  sqrt((p - q)' * C-inverse * (p - q))

where (p - q) is a k-vector. This reduces to Euclidean distance if the
covariance matrix is the identity matrix.

The space for which distances are computed is defined by the selected
variables. For each observation in the current sample range, the distance is
computed between the observation and the centroid of the selected variables.
This distance is the multidimensional counterpart of a standard z-score, and
can be used to judge whether a given observation "belongs" with a group of
other observations.

If the --vcv option is given, the covariance matrix and its inverse are
printed. If the --save option is given, the distances are saved to the
dataset under the name mdist (or mdist1, mdist2 and so on if there is
already a variable of that name).

Menu path:    /View/Mahalanobis distances

# makepkg Programming

Argument:   filename 
Options:    --index (write auxiliary index file)
            --translations (write auxiliary strings file)
            --quiet (operate quietly)

Supports creation of a gretl function package via the command line. The mode
of operation of this command depends on the extension of filename, which
must be either .gfn or .zip.

Gfn mode

Writes a gfn file. It is assumed that a package specification file, with the
same basename as filename but with the extension .spec, is accessible, along
with any auxiliary files that it references. It is also assumed that all the
functions to be packaged have been read into memory.

Zip mode

Writes a zip package file (gfn plus other materials). If a gfn file of the
same basename as filename is found, gretl checks for corresponding inp and
spec files: if these are both found and at least one of them is newer than
the gfn file then the gfn is rebuilt, otherwise the existing gfn is used. If
no such file is found, gretl first attempts to build the gfn.

Gfn options

The option flags support the writing of auxiliary files, intended for use
with gretl "addons". The index file is a short XML document containing basic
information about the package; it has the same basename as the package and
the extension .xml. The translations file contains strings from the package
that may be suitable for translation, in C format; for package foo this file
is named foo-i18n.c. These files are not produced if the command is
operating in zip mode and a pre-existing gfn file is used.

For details on all of this, see the gretl Function Package Guide.

Menu path:    /File/Function packages/New package

# markers Dataset

Variants:   markers --to-file=filename
            markers --from-file=filename
            markers --to-array=name
            markers --from-array=name
            markers --from-series=name
            markers --delete

The options --to-file and --to-array provide means of saving the observation
marker strings from the current dataset, either to a named file or a named
array. If no such strings are present an error is flagged. In the file case
output will be written in the current "workdir" unless the filename string
contains a full path specification. The markers are written one per line. In
the array case, if name is the identifier of an existing array of strings it
will be overwritten, otherwise a new array will be created.

With the option --from-file, reads the specified file (which should be UTF-8
text) and assigns observation markers to the rows in the dataset, reading
one marker per line. In general there should be at least as many markers in
the file as observations in the dataset, but if the dataset is a panel it is
also acceptable if the number of markers in the file matches the number of
cross-sectional units (in which case the markers are repeated for each time
period.) The --from-array option works similarly, reading from a named array
of strings.

The option --from-series offers a convenient way of creating observation
markers by copying from a string-valued series. An error is flagged if the
specified series does not have string values.

The --delete option does what you'd expect: it removes the observation
marker strings from the dataset.

Menu path:    /Data/Observation markers

# meantest Tests

Arguments:  series1 series2 
Option:     --unequal-vars (assume variances are unequal)

Calculates the t statistic for the null hypothesis that the population means
are equal for the variables series1 and series2, and shows its p-value.

By default the test statistic is calculated on the assumption that the
variances are equal for the two variables. With the --unequal-vars option
the variances are assumed to be different; in this case the degrees of
freedom for the test statistic are approximated as per Satterthwaite (1946).

Menu path:    /Tools/Test statistic calculator

# midasreg Estimation

Arguments:  depvar indepvars ; MIDAS-terms 
Options:    --vcv (print covariance matrix)
            --robust (robust standard errors)
            --quiet (suppress printing of results)
            --levenberg (see below)
Examples:   midasreg y 0 y(-1) ; mds(X, 1, 9, 1, theta)
            midasreg y 0 y(-1) ; mds(X, 1, 9, 0)
            midasreg y 0 y(-1) ; mdsl(XL, 2, theta)
            See also gdp_midas.inp

Carries out least-squares estimation (either NLS or OLS, depending on the
specification) of a MIDAS (Mixed Data Sampling) model. Such models include
one or more independent variables that are observed at a higher frequency
than the dependent variable; for a good brief introduction see Armesto,
Engemann and Owyang (2010).

The variables in indepvars should be of the same frequency as the dependent
variable. This list should usually include const or 0 (intercept) and
typically includes one or more lags of the dependent variable. The
high-frequency terms are given after a semicolon; each one takes the form of
a number of comma-separated arguments within parentheses, prefixed by either
mds or mdsl.

mds: this variant generally requires 5 arguments, as follows: the name of a
"MIDAS list", two integers giving the minimum and maximum high-frequency
lags, an integer between 0 and 4 (or string, see below) specifying the type
of parameterization to use, and the name of a vector holding initial values
of the parameters. The example below calls for lags 3 to 11 of the
high-frequency series represented by the list X, using parameterization type
1 (exponential Almon, see below) with initializer theta.

	mds(X, 3, 11, 1, theta)

mdsl: generally requires 3 arguments: the name of a list of MIDAS lags, an
integer (or string, see below) to specify the type of parameterization and
the name of an initialization vector. In this case the minimum and maximum
lags are implicit in the initial list argument. In the example below Xlags
should be a list which already holds all the required lags; such a list can
be constructed using the "hflags" function.

	mdsl(XLags, 1, theta)

The supported types of parameterization are shown below; in the context of
mds and mdsl specifications these may be given in the form of numeric codes
or the double-quoted strings shown after the numbers.

0 or "umidas": unrestricted MIDAS or U-MIDAS (each lag has its own
coefficient)

1 or "nealmon": normalized exponential Almon; requires at least one
parameter, commonly uses two

2 or "beta0": normalized beta with a zero last lag; requires exactly two
parameters

3 or "betan": normalized beta with non-zero last lag; requires exactly three
parameters

4 or "almonp": (non-normalized) Almon polynomial; requires at least one
parameter

5 or "beta1": as beta0, but with the first parameter fixed at 1, leaving a
single free parameter.

When the parameterization is U-MIDAS, the final initializer argument is not
required. In other cases you can request an automatic initialization by
substituting one or other of these two forms for the name of an initial
parameter vector:

  The keyword null: this is accepted if the parameterization has a fixed
  number of terms (the beta cases, with 2 or 3 parameters). It's also
  accepted for the exponential Almon case, implying the default of 2
  parameters.

  An integer value giving the required number of parameters.

The estimation method used by this command depends on the specification of
the high-frequency terms. In the case of U-MIDAS the method is OLS,
otherwise it is nonlinear least squares (NLS). When the normalized
exponential Almon or normalized beta parameterization is specified, the
default NLS method is a combination of constrained BFGS and OLS, but the
--levenberg option can be given to force use of the Levenberg-Marquardt
algorithm.

Menu path:    /Model/Univariate time series/MIDAS

# mle Estimation

Arguments:  log-likelihood function [ derivatives ] 
Options:    --quiet (don't show estimated model)
            --vcv (print covariance matrix)
            --hessian (base covariance matrix on the Hessian)
            --robust[=hac] (QML or HAC covariance matrix)
            --cluster=clustvar (cluster-robust covariance matrix)
            --verbose (print details of iterations)
            --no-gradient-check (see below)
            --auxiliary (see below)
            --lbfgs (use L-BFGS-B instead of regular BFGS)
Examples:   weibull.inp, biprobit_via_ghk.inp, frontier.inp, keane.inp

Performs Maximum Likelihood (ML) estimation using either the BFGS (Broyden,
Fletcher, Goldfarb, Shanno) algorithm or Newton's method. The user must
specify the log-likelihood function. The parameters of this function must be
declared and given starting values prior to estimation. Optionally, the user
may specify the derivatives of the log-likelihood function with respect to
each of the parameters; if analytical derivatives are not supplied, a
numerical approximation is computed.

This help text assumes use of the default BFGS maximizer. For information on
using Newton's method please see chapter 26 of the Gretl User's Guide.

Simple example: Suppose we have a series X with values 0 or 1 and we wish to
obtain the maximum likelihood estimate of the probability, p, that X = 1.
(In this simple case we can guess in advance that the ML estimate of p will
simply equal the proportion of Xs equal to 1 in the sample.)

The parameter p must first be added to the dataset and given an initial
value. For example, scalar p = 0.5.

We then construct the MLE command block:

	mle loglik = X*log(p) + (1-X)*log(1-p)
	  deriv p = X/p - (1-X)/(1-p)
	end mle

The first line above specifies the log-likelihood function. It starts with
the keyword mle, then a dependent variable is specified and an expression
for the log-likelihood is given (using the same syntax as in the "genr"
command). The next line (which is optional) starts with the keyword deriv
and supplies the derivative of the log-likelihood function with respect to
the parameter p. If no derivatives are given, you should include a statement
using the keyword params which identifies the free parameters: these are
listed on one line, separated by spaces and can be either scalars, or
vectors, or any combination of the two. For example, the above could be
changed to:

	mle loglik = X*log(p) + (1-X)*log(1-p)
	  params p
	end mle

in which case numerical derivatives would be used.

Note that any option flags should be appended to the ending line of the MLE
block. For example:

	mle loglik = X*log(p) + (1-X)*log(1-p)
	  params p
	end mle --quiet

Covariance matrix and standard errors

If the log-likelihood function returns a series or vector giving
per-observation values then estimated standard errors are by default based
on the Outer Product of the Gradient (OPG), while if the --hessian option is
given they are instead based on the negative inverse of the Hessian, which
is approximated numerically. If the --robust option is given, a QML
estimator is used (namely, a sandwich of the negative inverse of the Hessian
and the OPG). If the hac parameter is added to this option the OPG is
augmented in the manner of Newey and West to allow for serial correlation of
the gradient. (This only makes sense with time-series data.) However, if the
log-likelihood function just returns a scalar value, the OPG is not
available (and so neither is the QML estimator), and standard errors are of
necessity computed using the numerical Hessian.

In the event that you just want the primary parameter estimates you can give
the --auxiliary option, which suppresses computation of the covariance
matrix and standard errors; this will save some CPU cycles and memory usage.

Checking analytical derivatives

If you supply analytical derivatives, by default gretl runs a numerical
check on their plausibility. Occasionally this may produce false positives,
instances where correct derivatives appear to be wrong and estimation is
refused. To counter this, or to achieve a little extra speed, you can give
the option --no-gradient-check. Obviously, you should do this only if you
are confident that the gradient you have specified is right.

Parameter names

In estimating a nonlinear model it is often convenient to name the
parameters tersely. In printing the results, however, it may be desirable to
use more informative labels. This can be achieved via the additional keyword
param_names within the command block. For a model with k parameters the
argument following this keyword should be a double-quoted string literal
holding k space-separated names, the name of a string variable that holds k
such names, or the name of an array of k strings.

For an in-depth description of "mle" please refer to chapter 26 of the Gretl
User's Guide.

Menu path:    /Model/Maximum likelihood

# modeltab Utilities

Variants:   modeltab add
            modeltab show
            modeltab free
            modeltab --output=filename

Manipulates the gretl "model table". See chapter 3 of the Gretl User's Guide
for details. The sub-commands have the following effects: "add" adds the
last model estimated to the model table, if possible; "show" displays the
model table in a window; and "free" clears the table.

To call for printing of the model table, use the flag --output= plus a
filename. If the filename has the suffix ".tex", the output will be in TeX
format; if the suffix is ".rtf" the output will be RTF; otherwise it will be
plain text. In the case of TeX output the default is to produce a
"fragment", suitable for inclusion in a document; if you want a stand-alone
document instead, use the --complete option, for example

	modeltab --output="myfile.tex" --complete

Menu path:    Session icon window, Model table icon

# modprint Printing

Arguments:  coeffmat names [ addstats ] 
Option:     --output=filename (send output to specified file)

Prints the coefficient table and optional additional statistics for a model
estimated "by hand". Mainly useful for user-written functions.

The argument coeffmat should be a k by 2 matrix containing k coefficients
and k associated standard errors. The names argument should supply at least
k names for labeling the coefficients; it can take the form of a string
literal (in double quotes) or string variable, in which case the names
should be separated by commas or spaces, or it may be given as a named array
of strings.

The optional argument addstats is a vector containing p additional
statistics to be printed under the coefficient table. If this argument is
given, then names should contain k + p names, the additional p names to be
associated with the extra statistics.

If addstats is not provided and the coeffmat matrix has row names attached,
then the names argument can be omitted.

To put the output into a file, use the flag --output= plus a filename. If
the filename has the suffix ".tex", the output will be in TeX format; if the
suffix is ".rtf" the output will be RTF; otherwise it will be plain text. In
the case of TeX output the default is to produce a "fragment", suitable for
inclusion in a document; if you want a stand-alone document instead, use the
--complete option.

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification.

# modtest Tests

Argument:   [ order ] 
Options:    --normality (normality of residual)
            --logs (nonlinearity, logs)
            --squares (nonlinearity, squares)
            --autocorr (serial correlation)
            --arch (ARCH)
            --white (heteroskedasticity, White's test)
            --white-nocross (White's test, squares only)
            --breusch-pagan (heteroskedasticity, Breusch-Pagan)
            --robust (robust variance estimate for Breusch-Pagan)
            --panel (heteroskedasticity, groupwise)
            --comfac (common factor restriction, AR1 models only)
            --xdepend (cross-sectional dependence, panel data only)
            --quiet (don't print details)
            --silent (don't print anything)
Examples:   credscore.inp

Must immediately follow an estimation command. The discussion below applies
to usage of the command following estimation of a single-equation model; see
chapter 32 of the Gretl User's Guide for an account of how "modtest"
operates after estimation of a VAR.

Depending on the option given, this command carries out one of the
following: the Doornik-Hansen test for the normality of the error term; a
Lagrange Multiplier test for nonlinearity (logs or squares); White's test
(with or without cross-products) or the Breusch-Pagan test (Breusch and
Pagan, 1979) for heteroskedasticity; the LMF test for serial correlation
(Kiviet, 1986); a test for ARCH (Autoregressive Conditional
Heteroskedasticity; see also the "arch" command); a test of the common
factor restriction implied by AR(1) estimation; or a test for
cross-sectional dependence in panel-data models. With the exception of the
normality, common factor and cross-sectional dependence tests most of the
options are only available for models estimated via OLS, but see below for
details regarding two-stage least squares.

The optional order argument is relevant only in case the --autocorr or
--arch options are selected. The default is to run these tests using a lag
order equal to the periodicity of the data, but this can be adjusted by
supplying a specific lag order.

The --robust option applies only when the Breusch-Pagan test is selected;
its effect is to use the robust variance estimator proposed by Koenker
(1981), making the test less sensitive to the assumption of normality.

The --panel option is available only when the model is estimated on panel
data: in this case a test for groupwise heteroskedasticity is performed
(that is, for a differing error variance across the cross-sectional units).

The --comfac option is available only when the model is estimated via an
AR(1) method such as Hildreth-Lu. The auxiliary regression takes the form of
a relatively unrestricted dynamic model, which is used to test the common
factor restriction implicit in the AR(1) specification.

The --xdepend option is available only for models estimated on panel data.
The test statistic is that developed by Pesaran (2004). The null hypothesis
is that the error term is independently distributed across the
cross-sectional units or individuals.

By default, the program prints the auxiliary regression on which the test
statistic is based, where applicable. This may be suppressed by using the
--quiet flag (minimal printed output) or the --silent flag (no printed
output). The test statistic and its p-value may be retrieved using the
accessors "$test" and "$pvalue" respectively.

When a model has been estimated by two-stage least squares (see "tsls"), the
LM principle breaks down and gretl offers some equivalents: the --autocorr
option computes Godfrey's test for autocorrelation (Godfrey, 1994) while the
--white option yields the HET1 heteroskedasticity test (Pesaran and Taylor,
1999).

For additional diagnostic tests on models, see "chow", "cusum", "reset" and
"qlrtest".

Menu path:    Model window, /Tests

# mpi Programming

Argument:   see below 

The mpi command starts a block of statements (which must be ended with end
mpi) to be executed using MPI (Message Passing Interface) parallelization.
See gretl-mpi.pdf for a full account of this facility.

# mpols Estimation

Arguments:  depvar indepvars 
Options:    --vcv (print covariance matrix)
            --simple-print (do not print auxiliary statistics)
            --quiet (suppress printing of results)

Computes OLS estimates for the specified model using multiple precision
floating-point arithmetic, with the help of the Gnu Multiple Precision (GMP)
library. By default 256 bits of precision are used for the calculations, but
this can be increased via the environment variable GRETL_MP_BITS. For
example, when using the bash shell one could issue the following command,
before starting gretl, to set a precision of 1024 bits.

	export GRETL_MP_BITS=1024

A rather arcane option is available for this command (primarily for testing
purposes): if the indepvars list is followed by a semicolon and a further
list of numbers, those numbers are taken as powers of x to be added to the
regression, where x is the last variable in indepvars. These additional
terms are computed and stored in multiple precision. In the following
example y is regressed on x and the second, third and fourth powers of x:

	mpols y 0 x ; 2 3 4

Menu path:    /Model/Other linear models/High precision OLS

# negbin Estimation

Arguments:  depvar indepvars [ ; offset ] 
Options:    --model1 (use NegBin 1 model)
            --robust (QML covariance matrix)
            --cluster=clustvar (see "logit" for explanation)
            --opg (see below)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print results)
Examples:   camtriv.inp

Estimates a Negative Binomial model. The dependent variable is taken to
represent a count of the occurrence of events of some sort, and must have
only non-negative integer values. By default the model NegBin 2 is used, in
which the conditional variance of the count is given by mu(1 + αmu), where
mu denotes the conditional mean. But if the --model1 option is given the
conditional variance is mu(1 + α).

The optional offset series works in the same way as for the "poisson"
command. The Poisson model is a restricted form of the Negative Binomial in
which α = 0 by construction.

By default, standard errors are computed using a numerical approximation to
the Hessian at convergence. But if the --opg option is given the covariance
matrix is based on the Outer Product of the Gradient (OPG), or if the
--robust option is given QML standard errors are calculated, using a
"sandwich" of the inverse of the Hessian and the OPG.

Menu path:    /Model/Limited dependent variable/Count data

# nls Estimation

Arguments:  function [ derivatives ] 
Options:    --quiet (don't show estimated model)
            --robust (robust standard errors)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --no-gradient-check (see below)
Examples:   wg_nls.inp, ects_nls.inp

Performs Nonlinear Least Squares (NLS) estimation using a modified version
of the Levenberg-Marquardt algorithm. You must supply a function
specification. The parameters of this function must be declared and given
starting values prior to estimation. Optionally, you may specify the
derivatives of the regression function with respect to each of the
parameters. If you do not supply derivatives you should instead give a list
of the parameters to be estimated (separated by spaces or commas), preceded
by the keyword params. In the latter case a numerical approximation to the
Jacobian is computed.

It is easiest to show what is required by example. The following is a
complete script to estimate the nonlinear consumption function set out in
William Greene's Econometric Analysis (Chapter 11 of the 4th edition, or
Chapter 9 of the 5th). The numbers to the left of the lines are for
reference and are not part of the commands. Note that any option flags, such
as --vcv for printing the covariance matrix of the parameter estimates,
should be appended to the final command, end nls.

	1   open greene11_3.gdt
	2   ols C 0 Y
	3   scalar a = $coeff(0)
	4   scalar b = $coeff(Y)
	5   scalar g = 1.0
	6   nls C = a + b * Y^g
	7    deriv a = 1
	8    deriv b = Y^g
	9    deriv g = b * Y^g * log(Y)
	10  end nls --vcv

It is often convenient to initialize the parameters by reference to a
related linear model; that is accomplished here on lines 2 to 5. The
parameters alpha, beta and gamma could be set to any initial values (not
necessarily based on a model estimated with OLS), although convergence of
the NLS procedure is not guaranteed for an arbitrary starting point.

The actual NLS commands occupy lines 6 to 10. On line 6 the "nls" command is
given: a dependent variable is specified, followed by an equals sign,
followed by a function specification. The syntax for the expression on the
right is the same as that for the "genr" command. The next three lines
specify the derivatives of the regression function with respect to each of
the parameters in turn. Each line begins with the keyword "deriv", gives the
name of a parameter, an equals sign, and an expression whereby the
derivative can be calculated. As an alternative to supplying analytical
derivatives, you could substitute the following for lines 7 to 9:

	params a b g

Line 10, "end nls", completes the command and calls for estimation. Any
options should be appended to this line.

If you supply analytical derivatives, by default gretl runs a numerical
check on their plausibility. Occasionally this may produce false positives,
instances where correct derivatives appear to be wrong and estimation is
refused. To counter this, or to achieve a little extra speed, you can give
the option --no-gradient-check. Obviously, you should do this only if you
are confident that the gradient you have specified is right.

Parameter names

In estimating a nonlinear model it is often convenient to name the
parameters tersely. In printing the results, however, it may be desirable to
use more informative labels. This can be achieved via the additional keyword
param_names within the command block. For a model with k parameters the
argument following this keyword should be a double-quoted string literal
holding k space-separated names, the name of a string variable that holds k
such names, or the name of an array of k strings.

For further details on NLS estimation please see chapter 25 of the Gretl
User's Guide.

Menu path:    /Model/Nonlinear Least Squares

# normtest Tests

Argument:   series 
Options:    --dhansen (Doornik-Hansen test, the default)
            --swilk (Shapiro-Wilk test)
            --lillie (Lilliefors test)
            --jbera (Jarque-Bera test)
            --all (do all tests)
            --quiet (suppress printed output)

Carries out a test for normality for the given series. The specific test is
controlled by the option flags (but if no flag is given, the Doornik-Hansen
test is performed). Note: the Doornik-Hansen and Shapiro-Wilk tests are
recommended over the others, on account of their superior small-sample
properties.

The test statistic and its p-value may be retrieved using the accessors
"$test" and "$pvalue". Please note that if the --all option is given, the
result recorded is that from the Doornik-Hansen test.

Menu path:    /Variable/Normality test

# nulldata Dataset

Argument:   series_length 
Option:     --preserve (preserve variables other than series)
Example:    nulldata 500

Establishes a "blank" data set, containing only a constant and an index
variable, with periodicity 1 and the specified number of observations. This
may be used for simulation purposes: functions such as "uniform()" and
"normal()" will generate artificial series from scratch to fill out the data
set. This command may be useful in conjunction with "loop". See also the
"seed" option to the "set" command.

By default, this command cleans out all data in gretl's current workspace:
not only series but also matrices, scalars, strings, etc. If you give the
--preserve option, however, any currently defined variables other than
series are retained.

Menu path:    /File/New data set

# ols Estimation

Arguments:  depvar indepvars 
Options:    --vcv (print covariance matrix)
            --robust (robust standard errors)
            --cluster=clustvar (clustered standard errors)
            --jackknife (see below)
            --simple-print (do not print auxiliary statistics)
            --quiet (suppress printing of results)
            --anova (print an ANOVA table)
            --no-df-corr (suppress degrees of freedom correction)
            --print-final (see below)
Examples:   ols 1 0 2 4 6 7
            ols y 0 x1 x2 x3 --vcv
            ols y 0 x1 x2 x3 --quiet

Computes ordinary least squares (OLS) estimates with depvar as the dependent
variable and indepvars as the list of independent variables. Variables may
be specified by name or number; use the number zero for a constant term.

Besides coefficient estimates and standard errors, the program also prints
p-values for t (two-tailed) and F-statistics. A p-value below 0.01 indicates
statistical significance at the 1 percent level and is marked with ***. **
indicates significance between 1 and 5 percent and * indicates significance
between the 5 and 10 percent levels. Model selection statistics (the Akaike
Information Criterion or AIC and Schwarz's Bayesian Information Criterion)
are also printed. The formula used for the AIC is that given by Akaike
(1974), namely minus two times the maximized log-likelihood plus two times
the number of parameters estimated.

If the option --no-df-corr is given, the usual degrees of freedom correction
is not applied when calculating the estimated error variance (and hence also
the standard errors of the parameter estimates).

The option --print-final is applicable only in the context of a "loop". It
arranges for the regression to be run silently on all but the final
iteration of the loop. See chapter 13 of the Gretl User's Guide for details.

Various internal variables may be retrieved following estimation. For
example

	series uh = $uhat

saves the residuals under the name uh. See the "accessors" section of the
gretl function reference for details.

The specific formula ("HC" version) used for generating robust standard
errors when the --robust option is given can be adjusted via the "set"
command. The --jackknife option has the effect of selecting an hc_version of
3a. The --cluster overrides the selection of HC version, and produces robust
standard errors by grouping the observations by the distinct values of
clustvar; see chapter 22 of the Gretl User's Guide for details.

Menu path:    /Model/Ordinary Least Squares
Other access: Beta-hat button on toolbar

# omit Tests

Argument:   varlist 
Options:    --test-only (don't replace the current model)
            --chi-square (give chi-square form of Wald test)
            --quiet (print only the basic test result)
            --silent (don't print anything)
            --vcv (print covariance matrix for reduced model)
            --auto[=alpha] (sequential elimination, see below)
Examples:   omit 5 7 9
            omit seasonals --quiet
            omit --auto
            omit --auto=0.05
            See also restrict.inp, sw_ch12.inp, sw_ch14.inp

This command must follow an estimation command. In its primary form, it
calculates a Wald test for the joint significance of the variables in
varlist, which should be a subset (though not necessarily a proper subset)
of the independent variables in the model last estimated. The results of the
test may be retrieved using the accessors "$test" and "$pvalue".

Unless the restriction removes all the original regressors, by default the
restricted model is estimated and it replaces the original as the "current
model" for the purposes of, for example, retrieving the residuals as $uhat
or doing further tests. This behavior may be suppressed via the --test-only
option.

By default the F-form of the Wald test is recorded; the --chi-square option
may be used to record the chi-square form instead.

If the restricted model is both estimated and printed, the --vcv option has
the effect of printing its covariance matrix, otherwise this option is
ignored.

Alternatively, if the --auto flag is given, sequential elimination is
performed: at each step the variable with the highest p-value is omitted,
until all remaining variables have a p-value no greater than some cutoff.
The default cutoff is 10 percent (two-sided); this can be adjusted by
appending "=" and a value between 0 and 1 (with no spaces), as in the fourth
example above. If varlist is given this process is confined to the listed
variables, otherwise all regressors aside from the constant are treated as
candidates for omission. Note that the --auto and --test-only options cannot
be combined.

Menu path:    Model window, /Tests/Omit variables

# open Dataset

Argument:   filename 
Options:    --quiet (don't print list of series)
            --preserve (preserve variables other than series)
            --select=selection (read only the specified series, see below)
            --frompkg=pkgname (see below)
            --all-cols (see below)
            --www (use a database on the gretl server)
            --odbc (use an ODBC database)
            See below for additional specialized options
Examples:   open data4-1
            open voter.dta
            open fedbog.bin --www
            open dbnomics

Opens a data file or database -- see chapter 4 of the Gretl User's Guide for
an explanation of this distinction. The effect is somewhat different in the
two cases. When a data file is opened, its content is read into gretl's
workspace, replacing the current dataset (if any). To add data to the
current dataset instead of replacing, see "append" or (for greater
flexibility) "join". When a database is opened this does not immediately
load any data; rather, it sets the source for subsequent invocations of the
"data" command, which is used to import selected series. For specifics
regarding databases see the section headed "Opening a database" below.

If filename is not given as a full path, gretl will search some relevant
paths to try to find the file, with "workdir" as a first choice. If no
filename suffix is given (as in the first example above), gretl assumes a
native datafile with suffix .gdt. Based on the name of the file and various
heuristics, gretl will try to detect the format of the data file (native,
plain text, CSV, MS Excel, Stata, SPSS, etc.).

If the --frompkg option is used, gretl will look for the specified data file
in the subdirectory associated with the function package specified by
pkgname.

If the filename argument takes the form of a URI starting with http:// or
https://, then gretl will attempt to download the indicated data file before
opening it.

By default, opening a new data file clears the current gretl session, which
includes deletion of all named variables, including matrices, scalars and
strings. If you wish to keep your currently defined variables (other than
series, which are necessarily cleared out), use the --preserve option.

Spreadsheet files

When opening a data file in a spreadsheet format (Gnumeric, Open Document or
MS Excel), you may give up to three additional parameters following the
filename. First, you can select a particular worksheet within the file. This
is done either by giving its (1-based) number, using the syntax, e.g.,
--sheet=2, or, if you know the name of the sheet, by giving the name in
double quotes, as in --sheet="MacroData". The default is to read the first
worksheet. You can also specify a column and/or row offset into the
worksheet via, e.g.,

	--coloffset=3 --rowoffset=2

which would cause gretl to ignore the first 3 columns and the first 2 rows.
The default is an offset of 0 in both dimensions, that is, to start reading
at the top-left cell.

Delimited text files

With plain text files, gretl generally expects to find the data columns
delimited in some standard manner (generally via comma, tab, space or
semicolon). By default gretl looks for observation labels or dates in the
first column if its heading is empty or is a suggestive string such as
"year", "date" or "obs". You can prevent gretl from treating the first
column specially by giving the --all-cols option.

Fixed format text

A "fixed format" text data file is one without column delimiters, but in
which the data are laid out according to a known set of specifications such
as "variable k occupies 8 columns starting at column 24". To read such
files, you should append a string --fixed-cols=colspec, where colspec is
composed of comma-separated integers. These integers are interpreted as a
set of pairs. The first element of each pair denotes a starting column,
measured in bytes from the beginning of the line with 1 indicating the first
byte; and the second element indicates how many bytes should be read for the
given field. So, for example, if you say

	open fixed.txt --fixed-cols=1,6,20,3

then for variable 1 gretl will read 6 bytes starting at column 1; and for
variable 2, 3 bytes starting at column 20. Lines that are blank, or that
begin with #, are ignored, but otherwise the column-reading template is
applied, and if anything other than a valid numerical value is found an
error is flagged. If the data are read successfully, the variables will be
named v1, v2, etc. It's up to the user to provide meaningful names and/or
descriptions using the commands "rename" and/or "setinfo".

By default, when you import a file that contains string-valued series, a
text box will open showing you the contents of string_table.txt, a file
which contains the mapping between strings and their numeric coding. You can
suppress this behavior via the --quiet option.

Loading selected series

Use of open with a data file argument (as opposed to the database case, see
below) generally implies loading all series from the specified file.
However, in the case of native gretl files (gdt and gdtb) only, it is
possible to specify by name a subset of series to load. This is done via the
--select option, which requires an accompanying argument in one of three
forms: the name of a single series; a list of names, separated by spaces and
enclosed in double quotes; or the name of an array of strings. Examples:

	# single series
	open somefile.gdt --select=x1
	# more than one series
	open somefile.gdt --select="x1 x5 x27"
	# alternative method
	strings Sel = defarray("x1", "x5", "x27")
	open somefile.gdt --select=Sel

Opening a database

As mentioned above, the open command can be used to open a database file for
subsequent reading via the "data" command. Supported file-types are native
gretl databases, RATS 4.0 and PcGive.

Besides reading a file of one of these types on the local machine, three
further cases are supported. First, if the --www option is given, gretl will
try to access a native gretl database of the given name on the gretl server
-- for instance the Federal Reserve interest rates database fedbog.bin in
the third example shown above. Second, the command "open dbnomics" can be
used to set DB.NOMICS as the source for database reads; on this see dbnomics
for gretl. Third, if the --odbc option is given gretl will try to access an
ODBC database. This option is explained at length in chapter 42 of the Gretl
User's Guide.

Menu path:    /File/Open data
Other access: Drag a data file onto gretl's main window

# orthdev Transformations

Argument:   varlist 

Applicable with panel data only. A series of forward orthogonal deviations
is obtained for each variable in varlist and stored in a new variable with
the prefix o_. Thus "orthdev x y" creates the new variables o_x and o_y.

The values are stored one step ahead of their true temporal location (that
is, o_x at observation t holds the deviation that, strictly speaking,
belongs at t - 1). This is for compatibility with first differences: one
loses the first observation in each time series, not the last.

# outfile Printing

Variants:   outfile filename
            outfile --buffer=strvar
            outfile --tempfile=strvar
Options:    --append (append to file, first variant only)
            --quiet (see below)
            --buffer (see below)
            --tempfile (see below)

The outfile command starts a block in which any printed output is diverted
to a file or buffer (or just discarded, if you wish). Such a block is
terminated by the command "end outfile", after which output reverts to the
default stream.

Diversion to a named file

The first variant shown above sends output to a file named by the filename
argument. By default a new file is created (or an existing one is
overwritten). The output file will be written in the currently set
"workdir", unless the filename string contains a full path specification to
the contrary. If you wish to append output to an existing file instead, use
the --append flag.

Some special variations on this theme are available. If you give the keyword
null in place of a real filename the effect is to suppress all printed
output until redirection is ended. If either of the keywords stdout or
stderr are given in place of a regular filename the effect is to redirect
output to standard output or standard error output respectively.

A simple example follows, where the output from a particular regression is
written to a named file.

	open data4-10
	outfile regress.txt
	  ols ENROLL 0 CATHOL INCOME COLLEGE
	end outfile

Diversion to a string buffer

The --buffer option is used to store output in a string variable. The
required parameter for this option must be the name of an existing string
variable, whose content will be over-written. We show below the example
given above, revised to write to a string. In this case printing model_out
will display the redirected output.

	open data4-10
	string model_out = ""
	outfile --buffer=model_out
	  ols ENROLL 0 CATHOL INCOME COLLEGE
	end outfile
	print model_out

Diversion to a temporary file

The --tempfile option is used to direct output to a temporary file, with an
automatically constructed name that is guaranteed to be unique, in the
user's "dot" directory. As in the redirection to buffer case, the option
parameter should be the name of a string variable: in this case its content
is over-written with the name of the temporary file. Please note: files
written to the dot directory are cleaned up on exit from the program, so
don't use this form is you want the output to be preserved after your gretl
session.

We repeat the simple example from above, with a couple of extra lines to
illustrate the points that strvar tells you where the output went, and you
can retrieve it using the "readfile" function.

	open data4-10
	string mytemp
	outfile --tempfile=mytemp
	  ols ENROLL 0 CATHOL INCOME COLLEGE
	end outfile
	printf "Output went to %s\n", mytemp
	printf "The output was:\n%s\n", readfile(mytemp)
	# clean up if the file is no longer needed
	remove(mytemp)

In some cases you may wish to exercise some control over the name of the
temporary file. You can do this by supplying a string variable which
contains six consecutive Xs, as in

	string mytemp = "tmpXXXXXX.csv"
	outfile --tempfile=mytemp
	...

In this case XXXXXX will be replaced by random characters that ensure
uniqueness of the filename, but the ".csv" suffix will be preserved. As in
the simpler case above, the file is automatically written into the user's
"dot" directory and the content of the string variable passed via the option
flag is modified to hold the full path to the temporary file.

Quietness

The effect of the --quiet option is to turn off the echoing of commands and
the printing of auxiliary messages while output is redirected. It is
equivalent to doing

	set echo off
	set messages off

except that when redirection is ended the original values of the echo and
messages variables are restored. This option is available in all cases.

Levels of redirection

In general only one file can be opened in this way at any given time, so
calls to this command cannot be nested. However, use of this command is
permitted inside user-defined functions (provided the output file is also
closed from inside the same function) such that output can be temporarily
diverted and then given back to an original output file, in case outfile is
currently in use by the caller. For example, the code

	function void f (string s)
	    outfile inner.txt
	      print s
	    end outfile
	end function

	outfile outer.txt --quiet
	  print "Outside"
	  f("Inside")
	  print "Outside again"
	end outfile

will produce a file called "outer.txt" containing the two lines

	Outside
	Outside again

and a file called "inner.txt" containing the line

	Inside

# panel Estimation

Arguments:  depvar indepvars 
Options:    --vcv (print covariance matrix)
            --fixed-effects (estimate with group fixed effects)
            --random-effects (random effects or GLS model)
            --nerlove (use the Nerlove transformation)
            --pooled (estimate via pooled OLS)
            --between (estimate the between-groups model)
            --robust (robust standard errors; see below)
            --time-dummies (include time dummy variables)
            --unit-weights (weighted least squares)
            --iterate (iterative estimation)
            --matrix-diff (compute Hausman test via matrix difference)
            --unbalanced=method (random effects only, see below)
            --quiet (less verbose output)
            --verbose (more verbose output)
Examples:   penngrow.inp

Estimates a panel model. By default the fixed effects estimator is used;
this is implemented by subtracting the group or unit means from the original
data.

If the --random-effects flag is given, random effects estimates are
computed, by default using the method of Swamy and Arora (1972). In this
case (only) the option --matrix-diff forces use of the matrix-difference
method (as opposed to the regression method) for carrying out the Hausman
test for the consistency of the random effects estimator. Also specific to
the random effects estimator is the --nerlove flag, which selects the method
of Nerlove (1971) as opposed to Swamy and Arora.

Alternatively, if the --unit-weights flag is given, the model is estimated
via weighted least squares, with the weights based on the residual variance
for the respective cross-sectional units in the sample. In this case (only)
the --iterate flag may be added to produce iterative estimates: if the
iteration converges, the resulting estimates are Maximum Likelihood.

As a further alternative, if the --between flag is given, the between-groups
model is estimated (that is, an OLS regression using the group means).

The default means of calculating robust standard errors in panel-data models
is the Arellano HAC estimator, but Beck-Katz "Panel Corrected Standard
Errors" can be selected via the command set pcse on. When the robust option
is specified the joint F test on the fixed effects is performed using the
robust method of Welch (1951).

The --unbalanced option is available only for random effects models: it can
be used to choose an ANOVA method for use with an unbalanced panel. By
default gretl uses the Swamy-Arora method as for balanced panels, except
that the harmonic mean of the individual time-series lengths is used in
place of a common T. Under this option you can specify either bc, to use the
method of Baltagi and Chang (1994), or stata, to emulate the sa option to
the xtreg command in Stata.

For more details on panel estimation, please see chapter 23 of the Gretl
User's Guide.

Menu path:    /Model/Panel

# panplot Graphs

Argument:   plotvar 
Options:    --means (time series, group means)
            --overlay (plot per group, overlaid, N <= 130)
            --sequence (plot per group, in sequence, N <= 130)
            --grid (plot per group, in grid, N <= 16)
            --stack (plot per group, stacked, N <= 6)
            --boxplots (boxplot per group, in sequence, N <= 150)
            --boxplot (single boxplot, all groups)
            --output=filename (send output to specified file)
Examples:   panplot x --overlay
            panplot x --means --output=display

Graphing command specific to panel data: the series plotvar is plotted in a
mode specified by one or other of the options.

Apart from the --means and --boxplot options the plot explicitly represents
variation in both the time-series and cross-sectional dimensions. Such plots
are limited in respect of the number of groups (also known as individuals or
units) in the current sample range of the panel. For example, the --overlay
option, which shows a time series for each group in a single plot, is
available only when the number of groups, N, is 130 or less. (Otherwise the
graphic becomes too dense to be informative.) If a panel is too large to
permit the desired plot specification one can select a reduced range of
groups or units temporarily, as in

	smpl 1 100 --unit
	panplot x --overlay
	smpl full

The --output=filename option can be used to control the form and destination
of the output; see the "gnuplot" command for details.

Other access: Main window pop-up menu (single selection)

# panspec Tests

Options:    --nerlove (use Nerlove method for random effects)
            --matrix_diff (use matrix-difference method for Hausman test)
            --quiet (Suppress printed output)

This command is available only after estimating a panel-data model via OLS.
It tests the simple pooled specification against the most common
alternatives, fixed effects and random effects.

The fixed effects specification allows the intercept of the regression to
vary across the cross-sectional units. A Wald F-test is reported for the
null hypotheses that the intercepts do not differ. The random effects
specification decomposes the residual variance into two parts, one part
specific to the cross-sectional unit and the other specific to the
particular observation. (This estimator can be computed only if the number
of cross-sectional units in the data set exceeds the number of parameters to
be estimated.) The Breusch-Pagan LM statistic tests the null hypothesis that
pooled OLS is adequate against the random effects alternative.

Pooled OLS may be rejected against both of the alternatives. Provided the
unit- or group-specific error is uncorrelated with the independent
variables, the random effects estimator is more efficient than fixed
effects; otherwise the random effects estimator is inconsistent and fixed
effects are to be preferred. The null hypothesis for the Hausman test is
that the group-specific error is not so correlated (and therefore the random
effects estimator is preferable). A low p-value for this test counts against
random effects and in favor of fixed effects.

The first two options for this command pertain to random effects estimation.
By default the method of Swamy and Arora is used, and the Hausman test
statistic is calculated using the regression method. The options enable the
use of Nerlove's alternative variance estimator, and/or the
matrix-difference approach to the Hausman statistic.

On successful completion the accessors "$test" and "$pvalue" retrieve
3-vectors holding test statistics and p-values for the three tests noted
above: poolability (Wald), poolability (Breusch-Pagan), and Hausman. If you
just want the results in this form you can give the --quiet option to skip
printed output.

Note that after estimating the random effects specification via the "panel"
command, the Hausman test is automatically carried out and the results can
be retrieved via the "$hausman" accessor.

Menu path:    Model window, /Tests/Panel specification

# pca Statistics

Argument:   varlist 
Options:    --covariance (use the covariance matrix)
            --save[=n] (save major components)
            --save-all (save all components)
            --quiet (don't print results)

Principal Components Analysis. Unless the --quiet option is given, prints
the eigenvalues of the correlation matrix (or the covariance matrix if the
--covariance option is given) for the variables in varlist, along with the
proportion of the joint variance accounted for by each component. Also
prints the corresponding eigenvectors or "component loadings".

If you give the --save-all option then all components are saved to the
dataset as series, with names PC1, PC2 and so on. These artificial variables
are formed as the sum of (component loading) times (standardized X_i), where
X_i denotes the ith variable in varlist.

If you give the --save option without a parameter value, components with
eigenvalues greater than the mean (which means greater than 1.0 if the
analysis is based on the correlation matrix) are saved to the dataset as
described above. If you provide a value for n with this option then the most
important n components are saved.

See also the "princomp" function.

Menu path:    /View/Principal components

# pergm Statistics

Arguments:  series [ bandwidth ] 
Options:    --bartlett (use Bartlett lag window)
            --log (use log scale)
            --radians (show frequency in radians)
            --degrees (show frequency in degrees)
            --plot=mode-or-filename (see below)

Computes and displays the spectrum of the specified series. By default the
sample periodogram is given, but optionally a Bartlett lag window is used in
estimating the spectrum (see, for example, Greene's Econometric Analysis for
a discussion of this). The default width of the Bartlett window is twice the
square root of the sample size but this can be set manually using the
bandwidth parameter, up to a maximum of half the sample size.

If the --log option is given the spectrum is represented on a logarithmic
scale.

The (mutually exclusive) options --radians and --degrees influence the
appearance of the frequency axis when the periodogram is graphed. By default
the frequency is scaled by the number of periods in the sample, but these
options cause the axis to be labeled from 0 to pi radians or from 0 to
180degrees, respectively.

By default, if the program is not in batch mode a plot of the periodogram is
shown. This can be adjusted via the --plot option. The acceptable parameters
to this option are none (to suppress the plot); display (to display a plot
even when in batch mode); or a file name. The effect of providing a file
name is as described for the --output option of the "gnuplot" command.

Menu path:    /Variable/Periodogram
Other access: Main window pop-up menu (single selection)

# pkg Utilities

Arguments:  action pkgname 
Options:    --local (install from local file)
            --quiet (see below)
            --verbose (see below)
Examples:   pkg install armax
            pkg install /path/to/myfile.gfn --local
            pkg query ghosts
            pkg unload armax

This command provides a means of installing, unloading, querying or deleting
gretl function packages. The action argument must be one of install, query,
unload, remove or index.

install: In the most basic form, with no option flag and the pkgname
argument given as the "plain" name of a gretl function package (as in the
first example above), the effect is to download the specified package from
the gretl server (unless pkgname starts with http://) and install it on the
local machine. In this case it is not necessary to supply a filename
extension. If the --local option is given, however, pkgname should be the
path to an uninstalled package file on the local machine, with the correct
extension (.gfn or .zip). In this case the effect is to copy the file into
place (gfn), or unzip it into place (zip), "into place" meaning where the
"include" command will find it.

query: The default effect is to print basic information about the specified
package (author, version, etc.). But if the --quiet option is appended
nothing is printed; the package information is instead stored in the form of
a gretl bundle, which can be accessed via "$result". If no information can
be found this bundle will be empty.

unload: pkgname should be given in plain form, without path or suffix as in
the last example above. The effect is to unload the package in question from
gretl's memory, if it is currently loaded, and also to remove it from the
GUI menu to which it is attached, if any.

remove: performs the actions noted for unload and in addition deletes the
file(s) associated with the package from disk.

index: is a special case in which pkgname must be replaced by the keyword
"addons": the effect is to update the index of the standard packages known
as addons. Such updating is performed automatically from time to time but in
some cases a manual update may be useful. In this case the --verbose flag
produces a printout of where gretl has searched and what it has found. To be
clear, here's the way to get full indexing output:

	pkg index addons --verbose

Menu path:    /File/Function packages/On server

# plot Graphs

Argument:   [ data ] 
Options:    --with-lines[=varspec] (use lines, not points)
            --with-lp[=varspec] (use lines and points)
            --with-impulses[=varspec] (use vertical lines)
            --with-steps[=varspec] (use horizontal and vertical line segments)
            --time-series (plot against time)
            --single-yaxis (force use of just one y-axis)
            --ylogscale[=base] (use log scale for vertical axis)
            --dummy (see below)
            --fit=fitspec (see below)
            --band=bandspec (see below)
            --band-style=style (see below)
            --output=filename (send output to specified file)
Examples:   nile.inp

The plot block provides an alternative to the "gnuplot" command which may be
more convenient when you are producing an elaborate plot (with several
options and/or gnuplot commands to be inserted into the plot file). In
addition to the following explanation, please also refer to chapter 6 of the
Gretl User's Guide for some further examples.

A plot block starts with the command-word plot. This is commonly followed by
a data argument, which specifies data to be plotted: this should be the name
of a list, a matrix, or a single series. If no input data are specified the
block must contain at least one directive to plot a formula instead; such
directives may be given via literal or printf lines (see below).

If a list or matrix is given, the last element (list) or column (matrix) is
assumed to be the x-axis variable and the other(s) the y-axis variable(s),
unless the --time-series option is given in which case all the specified
data go on the y axis.

The option of supplying a single series name is restricted to time-series
data, in which case it is assumed that a time-series plot is wanted;
otherwise an error is flagged.

The starting line may be prefixed with the "savename <-" apparatus to save a
plot as an icon in the GUI program. The block ends with end plot.

Inside the block you have zero or more lines of these types, identified by
an initial keyword:

  option: specify a single option.

  options: specify multiple options on a single line, separated by spaces.

  literal: a command to be passed to gnuplot literally.

  printf: a printf statement whose result will be passed to gnuplot
  literally.

Note that when you specify an option using the option or options keywords,
it is not necessary to supply the customary double-dash before the option
specifier. For details on the effects of the various options please see
"gnuplot" (but see below for some specifics on using the --band option in
the plot context).

The intended use of the plot block is best illustrated by example:

	string title = "My title"
	string xname = "My x-variable"
	plot plotmat
	    options with-lines fit=none
	    literal set linetype 3 lc rgb "#0000ff"
	    literal set nokey
	    printf "set title \"%s\"", title
	    printf "set xlabel \"%s\"", xname
	end plot --output=display

This example assumes that plotmat is the name of a matrix with at least 2
columns (or a list with at least two members). Note that it is considered
good practice to place the --output option (only) on the last line of the
block; other options should be placed within the block.

Plotting a band with matrix data

The --band and --band-style options mostly work as described in the help for
"gnuplot", with the following exception: when the data to be plotted are
given in the form of a matrix, the first parameter to --band must be given
as the name of a matrix with two columns (holding, respectively, the center
and the width of the band). This parameter takes the place of the two values
(series names or ID numbers, or matrix columns) required by the gnuplot
version of this option. An illustration follows:

	scalar n = 100
	matrix x = seq(1,n)'
	matrix y = x + filter(mnormal(n,1), 1, {1.8, -0.9})
	matrix B = y ~ muniform(n,1)
	plot y
	    options time-series with-lines
	    options band=B,10 band-style=fill
	end plot --output=display

Plotting without data

The following example shows a simple case of specifying a plot without a
data source.

	plot
	    literal set title 'CRRA utility'
	    literal set xlabel 'c'
	    literal set ylabel 'u(c)'
	    literal set xrange[1:3]
	    literal set key top left
	    literal crra(x,s) = (x**(1-s) - 1)/(1-s)
	    printf "plot crra(x, 0) t 'sigma=0', \\"
	    printf " log(x) t 'sigma=1', \\"
	    printf " crra(x,3) t 'sigma=3"
	end plot --output=display

# poisson Estimation

Arguments:  depvar indepvars [ ; offset ] 
Options:    --robust (robust standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print results)
Examples:   poisson y 0 x1 x2
            poisson y 0 x1 x2 ; S
            See also camtriv.inp, greene19_3.inp

Estimates a poisson regression. The dependent variable is taken to represent
the occurrence of events of some sort, and must take on only non-negative
integer values.

If a discrete random variable Y follows the Poisson distribution, then

  Pr(Y = y) = exp(-v) * v^y / y!

for y = 0, 1, 2,.... The mean and variance of the distribution are both
equal to v. In the Poisson regression model, the parameter v is represented
as a function of one or more independent variables. The most common version
(and the only one supported by gretl) has

  v = exp(b0 + b1*x1 + b2*x2 + ...)

or in other words the log of v is a linear function of the independent
variables.

Optionally, you may add an "offset" variable to the specification. This is a
scale variable, the log of which is added to the linear regression function
(implicitly, with a coefficient of 1.0). This makes sense if you expect the
number of occurrences of the event in question to be proportional, other
things equal, to some known factor. For example, the number of traffic
accidents might be supposed to be proportional to traffic volume, other
things equal, and in that case traffic volume could be specified as an
"offset" in a Poisson model of the accident rate. The offset variable must
be strictly positive.

By default, standard errors are computed using the negative inverse of the
Hessian. If the --robust flag is given, then QML or Huber-White standard
errors are calculated instead. In this case the estimated covariance matrix
is a "sandwich" of the inverse of the estimated Hessian and the outer
product of the gradient.

See also "negbin".

Menu path:    /Model/Limited dependent variable/Count data

# print Printing

Variants:   print varlist
            print
            print object-names
            print string-literal
Options:    --byobs (by observations)
            --no-dates (use simple observation numbers)
            --range=start:stop (see below)
            --midas (see below)
            --tree (specific to bundles; see below)
Examples:   print x1 x2 --byobs
            print my_matrix
            print "This is a string"
            print my_array --range=3:6
            print hflist --midas

Please note that print is a rather "basic" command (primarily intended for
printing the values of series); see "printf" and "eval" for more advanced,
and less restrictive, alternatives.

In the first variant shown above (also see the first example), varlist
should be a list of series (either a named list or a list specified via the
names or ID numbers of series, separated by spaces). In that case this
command prints the values of the listed series. By default the data are
printed "by variable", but if the --byobs flag is added they are printed by
observation. When printing by observation, the default is to show the date
(with time-series data) or the observation marker string (if any) at the
start of each line. The --no-dates option suppresses the printing of dates
or markers; a simple observation number is shown instead. See the final
paragraph of this entry for the effect of the --midas option (which applies
only to a named list of series).

If no argument is given (the second variant shown above) then the action is
similar to the first case except that all series in the current dataset are
printed. The supported options are as decribed above.

The third variant (with the object-names argument; see the second example)
expects a space-separated list of names of primary gretl objects other than
series (scalars, matrices, strings, bundles, arrays). The value(s) of these
objects are displayed. In the case of bundles, their members are sorted by
type and alphabetically.

In the fourth form (third example), string-literal should be a string
enclosed in double-quotes (and there should be nothing else following on the
command line). The string in question is printed, followed by a newline
character.

The --range option can be used to control the amount of information printed.
The start and stop (integer) values refer to observations for series and
lists, rows for matrices, elements for arrays, and lines of text for
strings. In all cases the minimum start value is 1 and the maximum stop
value is the "row-wise size" of the object in question. Negative values for
these indices are taken to indicate a count back from the end. The indices
may be given in numeric form or as the names of predefined scalar variables.
If start is omitted that is taken as an implicit 1 and if stop is omitted
that means go all the way to the end. Note that with series and lists the
indices are relative to the current sample range.

The --tree option is specific to the printing of a gretl bundle: the effect
is that if the specified bundle contains further bundles, or arrays of
bundles, their contents are listed. Otherwise only the top-level members of
the bundle are listed.

The --midas option is specific to the printing of a list of series, and
moreover it is specific to datasets that contain one or more high-frequency
series, each represented by a "MIDAS list". If one such list is given as
argument and this option is appended, the series is printed by observation
at its "native" frequency.

Menu path:    /Data/Display values

# printf Printing

Arguments:  format , args 

Prints scalar values, series, matrices, or strings under the control of a
format string (providing a subset of the printf function in the C
programming language). Recognized numeric formats are %e, %E, %f, %g, %G, %d
and %x, in each case with the various modifiers available in C. Examples:
the format %.10g prints a value to 10 significant figures; %12.6f prints a
value to 6 decimal places, with a width of 12 characters. Note, however,
that in gretl the format %g is a good default choice for all numerical
values; you don't need to get too complicated. The format %s should be used
for strings.

The format string itself must be enclosed in double quotes. The values to be
printed must follow the format string, separated by commas. These values
should take the form of either (a) the names of variables, (b) expressions
that yield some sort of printable result, or (c) the special functions
varname() or date(). The following example prints the values of two
variables plus that of a calculated expression:

	ols 1 0 2 3
	scalar b = $coeff[2]
	scalar se_b = $stderr[2]
	printf "b = %.8g, standard error %.8g, t = %.4f\n",
          b, se_b, b/se_b

The next lines illustrate the use of the varname and date functions, which
respectively print the name of a variable, given its ID number, and a date
string, given a 1-based observation number.

	printf "The name of variable %d is %s\n", i, varname(i)
	printf "The date of observation %d is %s\n", j, date(j)

If a matrix argument is given in association with a numeric format, the
entire matrix is printed using the specified format for each element. The
same applies to series, except that the range of values printed is governed
by the current sample setting.

The maximum length of a format string is 127 characters. The escape
sequences \n (newline), \r (carriage return), \t (tab), \v (vertical tab)
and \\ (literal backslash) are recognized. To print a literal percent sign,
use %%.

As in C, numerical values that form part of the format (width and or
precision) may be given directly as numbers, as in %10.4f, or they may be
given as variables. In the latter case, one puts asterisks into the format
string and supplies corresponding arguments in order. For example,

	scalar width = 12
	scalar precision = 6
	printf "x = %*.*f\n", width, precision, x

# probit Estimation

Arguments:  depvar indepvars 
Options:    --robust (robust standard errors)
            --cluster=clustvar (see "logit" for explanation)
            --vcv (print covariance matrix)
            --verbose (print details of iterations)
            --quiet (don't print results)
            --p-values (show p-values instead of slopes)
            --estrella (select pseudo-R-squared variant)
            --random-effects (estimates a random effects panel probit model)
            --quadpoints=k (number of quadrature points for RE estimation)
Examples:   ooballot.inp, oprobit.inp, reprobit.inp

If the dependent variable is a binary variable (all values are 0 or 1)
maximum likelihood estimates of the coefficients on indepvars are obtained
via the Newton-Raphson method. As the model is nonlinear the slopes depend
on the values of the independent variables. By default the slopes with
respect to each of the independent variables are calculated (at the means of
those variables) and these slopes replace the usual p-values in the
regression output. This behavior can be suppressed by giving the --p-values
option. The chi-square statistic tests the null hypothesis that all
coefficients are zero apart from the constant.

By default, standard errors are computed using the negative inverse of the
Hessian. If the --robust flag is given, then QML or Huber-White standard
errors are calculated instead. In this case the estimated covariance matrix
is a "sandwich" of the inverse of the estimated Hessian and the outer
product of the gradient. See chapter 10 of Davidson and MacKinnon for
details.

By default the pseudo-R-squared statistic suggested by McFadden (1974) is
shown, but in the binary case if the --estrella option is given, the variant
recommended by Estrella (1998) is shown instead. This variant arguably
mimics more closely the properties of the regular R^2 in the context of
least-squares estimation.

If the dependent variable is not binary but is discrete, then Ordered Probit
estimates are obtained. (If the variable selected as dependent is not
discrete, an error is flagged.)

Probit for panel data

With the --random-effects option, the error term is assumed to be composed
of two normally distributed components: one time-invariant term that is
specific to the cross-sectional unit or "individual" (and is known as the
individual effect); and one term that is specific to the particular
observation.

Evaluation of the likelihood for this model involves the use of
Gauss-Hermite quadrature for approximating the value of expectations of
functions of normal variates. The number of quadrature points used can be
chosen through the --quadpoints option (the default is 32). Using more
points will increase the accuracy of the results, but at the cost of longer
compute time; with many quadrature points and a large dataset estimation may
be quite time consuming.

Besides the usual parameter estimates (and associated statistics) relating
to the included regressors, certain additional information is presented on
estimation of this sort of model:

  lnsigma2: the maximum likelihood estimate of the log of the variance of
  the individual effect;

  sigma_u: the estimated standard deviation of the individual effect; and

  rho: the estimated share of the individual effect in the composite error
  variance (also known as the intra-class correlation).

The Likelihood Ratio test of the null hypothesis that rho equals zero
provides a means of assessing whether the random effects specification is
needed. If the null is not rejected that suggests that a simple pooled
probit specification is adequate.

Menu path:    /Model/Limited dependent variable/Probit

# pvalue Statistics

Arguments:  dist [ params ] xval 
Examples:   pvalue z zscore
            pvalue t 25 3.0
            pvalue X 3 5.6
            pvalue F 4 58 fval
            pvalue G shape scale x
            pvalue B bprob 10 6
            pvalue P lambda x
            pvalue W shape scale x
            See also mrw.inp, restrict.inp

Computes the area to the right of xval in the specified distribution (z for
Gaussian, t for Student's t, X for chi-square, F for F, G for gamma, B for
binomial, P for Poisson, exp for Exponential, W for Weibull).

Depending on the distribution, the following information must be given,
before the xval: for the t and chi-square distributions, the degrees of
freedom; for F, the numerator and denominator degrees of freedom; for gamma,
the shape and scale parameters; for the binomial distribution, the "success"
probability and the number of trials; for the Poisson distribution, the
parameter lambda (which is both the mean and the variance); for the
Exponential, a scale parameter; and for the Weibull, shape and scale
parameters. As shown in the examples above, the numerical parameters may be
given in numeric form or as the names of variables.

The parameters for the gamma distribution are sometimes given as mean and
variance rather than shape and scale. The mean is the product of the shape
and the scale; the variance is the product of the shape and the square of
the scale. So the scale may be found as the variance divided by the mean,
and the shape as the mean divided by the scale.

Menu path:    /Tools/P-value finder

# qlrtest Tests

Options:    --limit-to=list (limit test to subset of regressors)
            --plot=mode-or-filename (see below)
            --quiet (suppress printed output)

For a model estimated on time-series data via OLS, performs the Quandt
likelihood ratio (QLR) test for a structural break at an unknown point in
time, with 15 percent trimming at the beginning and end of the sample
period.

For each potential break point within the central 70 percent of the
observations, a Chow test is performed. See "chow" for details; as with the
regular Chow test, this is a robust Wald test if the original model was
estimated with the --robust option, an F-test otherwise. The QLR statistic
is then the maximum of the individual test statistics.

An asymptotic p-value is obtained using the method of Bruce Hansen (1997).

Besides the standard hypothesis test accessors "$test" and "$pvalue",
"$qlrbreak" can be used to retrieve the index of the observation at which
the test statistic is maximized.

The --limit-to option can be used to limit the set of interactions with the
split dummy variable in the Chow tests to a subset of the original
regressors. The parameter for this option must be a named list, all of whose
members are among the original regressors. The list should not include the
constant.

When this command is run interactively (only), a plot of the Chow test
statistic is displayed by default. This can be adjusted via the --plot
option. The acceptable parameters to this option are none (to suppress the
plot); display (to display a plot even when not in interactive mode); or a
file name. The effect of providing a file name is as described for the
--output option of the "gnuplot" command.

Menu path:    Model window, /Tests/QLR test

# qqplot Graphs

Variants:   qqplot y
            qqplot y x
Options:    --z-scores (see below)
            --raw (see below)
            --output=filename (send plot to specified file)

Given just one series argument, displays a plot of the empirical quantiles
of the selected series (given by name or ID number) against the quantiles of
the normal distribution. The series must include at least 20 valid
observations in the current sample range. By default the empirical quantiles
are plotted against quantiles of the normal distribution having the same
mean and variance as the sample data, but two alternatives are available: if
the --z-scores option is given the data are standardized, while if the --raw
option is given the "raw" empirical quantiles are plotted against the
quantiles of the standard normal distribution.

The option --output has the effect of sending the output to the specified
file; use "display" to force output to the screen. See the "gnuplot" command
for more detail on this option.

Given two series arguments, y and x, displays a plot of the empirical
quantiles of y against those of x. The data values are not standardized.

Menu path:    /Variable/Normal Q-Q plot
Menu path:    /View/Graph specified vars/Q-Q plot

# quantreg Estimation

Arguments:  tau depvar indepvars 
Options:    --robust (robust standard errors)
            --intervals[=level] (compute confidence intervals)
            --vcv (print covariance matrix)
            --quiet (suppress printing of results)
Examples:   quantreg 0.25 y 0 xlist
            quantreg 0.5 y 0 xlist --intervals
            quantreg 0.5 y 0 xlist --intervals=.95
            quantreg tauvec y 0 xlist --robust
            See also mrw_qr.inp

Quantile regression. The first argument, tau, is the conditional quantile
for which estimates are wanted. It may be given either as a numerical value
or as the name of a pre-defined scalar variable; the value must be in the
range 0.01 to 0.99. (Alternatively, a vector of values may be given for tau;
see below for details.) The second and subsequent arguments compose a
regression list on the same pattern as "ols".

Without the --intervals option, standard errors are printed for the quantile
estimates. By default, these are computed according to the asymptotic
formula given by Koenker and Bassett (1978), but if the --robust option is
given, standard errors that are robust with respect to heteroskedasticity
are calculated using the method of Koenker and Zhao (1994).

When the --intervals option is chosen, confidence intervals are given for
the parameter estimates instead of standard errors. These intervals are
computed using the rank inversion method, and in general they are
asymmetrical about the point estimates. The specifics of the calculation are
inflected by the --robust option: without this, the intervals are computed
on the assumption of IID errors (Koenker, 1994); with it, they use the
robust estimator developed by Koenker and Machado (1999).

By default, 90 percent confidence intervals are produced. You can change
this by appending a confidence level (expressed as a decimal fraction) to
the intervals option, as in --intervals=0.95.

Vector-valued tau: instead of supplying a scalar, you may give the name of a
pre-defined matrix. In this case estimates are computed for all the given
tau values and the results are printed in a special format, showing the
sequence of quantile estimates for each regressor in turn.

Menu path:    /Model/Robust estimation/Quantile regression

# quit Utilities

Exits from gretl's current modality.

  When called from a script, execution of the script is terminated. If the
  context is gretlcli in batch mode, gretlcli itself exits, otherwise the
  program reverts to interactive mode.

  When called from the GUI console, the console window is closed.

  When called from gretlcli in interactive mode the program exits.

Note that this command cannot be called within functions or loops.

In no case does the quit command cause the gretl GUI program to exit. That
is done via the Quit item under the File menu, or Ctrl+Q, or by clicking the
close control on the title-bar of the main gretl window.

# rename Dataset

Arguments:  series newname 
Option:     --quiet (suppress printed output)

Changes the name of series (identified by name or ID number) to newname. The
new name must be of 31 characters maximum, must start with a letter, and
must be composed of only letters, digits, and the underscore character. In
addition, it must not be the name of an existing object of any kind.

Menu path:    /Variable/Edit attributes
Other access: Main window pop-up menu (single selection)

# reset Tests

Options:    --quiet (don't print the auxiliary regression)
            --silent (don't print anything)
            --squares-only (compute the test using only the squares)
            --cubes-only (compute the test using only the cubes)

Must follow the estimation of a model via OLS. Carries out Ramsey's RESET
test for model specification (nonlinearity) by adding the squares and/or the
cubes of the fitted values to the regression and calculating the F statistic
for the null hypothesis that the coefficients on the added terms are zero.

Both the squares and the cubes are added unless one of the options
--squares-only or --cubes-only is given.

The --silent option may be used if one plans to make use of the "$test"
and/or "$pvalue" accessors to grab the results of the test.

Menu path:    Model window, /Tests/Ramsey's RESET

# restrict Tests

Options:    --quiet (don't print restricted estimates)
            --silent (don't print anything)
            --wald (system estimators only - see below)
            --bootstrap (bootstrap the test if possible)
            --full (OLS and VECMs only, see below)
Examples:   hamilton.inp, restrict.inp

Imposes a set of (usually linear) restrictions on either (a) the model last
estimated or (b) a system of equations previously defined and named. In all
cases the set of restrictions should be started with the keyword "restrict"
and terminated with "end restrict".

In the single equation case the restrictions are always implicitly to be
applied to the last model, and they are evaluated as soon as the restrict
block is closed.

In the case of a system of equations (defined via the "system" command), the
initial "restrict" may be followed by the name of a previously defined
system of equations. If this is omitted and the last model was a system then
the restrictions are applied to the last model. By default the restrictions
are evaluated when the system is next estimated, using the "estimate"
command. But if the --wald option is given the restriction is tested right
away, via a Wald chi-square test on the covariance matrix. Note that this
option will produce an error if a system has been defined but not yet
estimated.

Depending on the context, the restrictions to be tested may be expressed in
various ways. The simplest form is as follows: each restriction is given as
an equation, with a linear combination of parameters on the left and a
scalar value to the right of the equals sign (either a numerical constant or
the name of a scalar variable).

In the single-equation case, parameters may be referenced in the form b[i],
where i represents the position in the list of regressors (starting at 1),
or b[varname], where varname is the name of the regressor in question. In
the system case, parameters are referenced using b plus two numbers in
square brackets. The leading number represents the position of the equation
within the system and the second number indicates position in the list of
regressors. For example b[2,1] denotes the first parameter in the second
equation, and b[3,2] the second parameter in the third equation. The b terms
in the equation representing a restriction may be prefixed with a numeric
multiplier, for example 3.5*b[4].

Here is an example of a set of restrictions for a previously estimated
model:

	restrict
	 b[1] = 0
	 b[2] - b[3] = 0
	 b[4] + 2*b[5] = 1
	end restrict

And here is an example of a set of restrictions to be applied to a named
system. (If the name of the system does not contain spaces, the surrounding
quotes are not required.)

	restrict "System 1"
	 b[1,1] = 0
	 b[1,2] - b[2,2] = 0
	 b[3,4] + 2*b[3,5] = 1
	end restrict

In the single-equation case the restrictions are by default evaluated via a
Wald test, using the covariance matrix of the model in question. If the
original model was estimated via OLS then the restricted coefficient
estimates are printed; to suppress this, append the --quiet option flag to
the initial restrict command. As an alternative to the Wald test, for models
estimated via OLS or WLS only, you can give the --bootstrap option to
perform a bootstrapped test of the restriction.

In the system case, the test statistic depends on the estimator chosen: a
Likelihood Ratio test if the system is estimated using a Maximum Likelihood
method, or an asymptotic F-test otherwise.

There are three alternatives to the method of expressing restrictions
described above. First, a set of g linear restrictions on a k-vector of
parameters, beta, may be written compactly as Rbeta - q = 0, where R is an g
x k matrix and q is a g-vector. You can specify a restriction by giving the
names of pre-defined, conformable matrices to be used as R and q, as in

	restrict
	  R = Rmat
	  q = qvec
	end restrict

Second, in a variant that may be useful when restrict is used within a
function, you can construct the set of restriction statements in the form of
an array of strings. You then use the inject keyword with the name of the
array. Here's a simple example:

	strings SR = array(2)
	RS[1] = "b[1,2] = 0"
	RS[2] = "b[2,1] = 0"
	restrict
	  inject RS
	end restrict

In actual usage of this method one would likely use "sprintf" to construct
the strings, based on input to a function.

Lastly, if you wish to test a nonlinear restriction (this is currently
available for single-equation models only) you should give the restriction
as the name of a function, preceded by "rfunc = ", as in

	restrict
	  rfunc = myfunction
	end restrict

The constraint function should take a single const matrix argument; this
will be automatically filled out with the parameter vector. And it should
return a vector which is zero under the null hypothesis, non-zero otherwise.
The length of the vector is the number of restrictions. This function is
used as a "callback" by gretl's numerical Jacobian routine, which calculates
a Wald test statistic via the delta method.

Here is a simple example of a function suitable for testing one nonlinear
restriction, namely that two pairs of parameter values have a common ratio.

	function matrix restr (const matrix b)
	  matrix v = b[1]/b[2] - b[4]/b[5]
	  return v
	end function

On successful completion of the restrict command the accessors "$test" and
"$pvalue" give the test statistic and its p-value.

When testing restrictions on a single-equation model estimated via OLS, or
on a VECM, the --full option can be used to set the restricted estimates as
the "last model" for the purposes of further testing or the use of accessors
such as $coeff and $vcv. Note that some special considerations apply in the
case of testing restrictions on Vector Error Correction Models. Please see
chapter 33 of the Gretl User's Guide for details.

Menu path:    Model window, /Tests/Linear restrictions

# rmplot Graphs

Argument:   series 
Options:    --trim (see below)
            --quiet (suppress printed output)
            --output=filename (see below)

Range-mean plot: this command creates a simple graph to help in deciding
whether a time series, y(t), has constant variance or not. We take the full
sample t=1,...,T and divide it into small subsamples of arbitrary size k.
The first subsample is formed by y(1),...,y(k), the second is y(k+1), ...,
y(2k), and so on. For each subsample we calculate the sample mean and range
(= maximum minus minimum), and we construct a graph with the means on the
horizontal axis and the ranges on the vertical. So each subsample is
represented by a point in this plane. If the variance of the series is
constant we would expect the subsample range to be independent of the
subsample mean; if we see the points approximate an upward-sloping line this
suggests the variance of the series is increasing in its mean; and if the
points approximate a downward sloping line this suggests the variance is
decreasing in the mean.

Besides the graph, gretl displays the means and ranges for each subsample,
along with the slope coefficient for an OLS regression of the range on the
mean and the p-value for the null hypothesis that this slope is zero. If the
slope coefficient is significant at the 10 percent significance level then
the fitted line from the regression of range on mean is shown on the graph.
The t-statistic for the null, and the corresponding p-value, are recorded
and may be retrieved using the accessors "$test" and "$pvalue" respectively.

If the --trim option is given, the minimum and maximum values in each
sub-sample are discarded before calculating the mean and range. This makes
it less likely that outliers will distort the analysis.

If the --quiet option is given, no graph is shown and no output is printed;
only the t-statistic and p-value are recorded. Otherwise the form of the
plot can be controlled via the --output option; this works as described in
connection with the "gnuplot" command.

Menu path:    /Variable/Range-mean graph

# run Programming

Argument:   filename 

Executes the commands in filename then returns control to the interactive
prompt. This command is intended for use with the command-line program
gretlcli, or at the "gretl console" in the GUI program.

See also "include".

Menu path:    Run icon in script window

# runs Tests

Argument:   series 
Options:    --difference (use first difference of variable)
            --equal (positive and negative values are equiprobable)

Carries out the nonparametric "runs" test for randomness of the specified
series, where runs are defined as sequences of consecutive positive or
negative values. If you want to test for randomness of deviations from the
median, for a variable named x1 with a non-zero median, you can do the
following:

	series signx1 = x1 - median(x1)
	runs signx1

If the --difference option is given, the variable is differenced prior to
the analysis, hence the runs are interpreted as sequences of consecutive
increases or decreases in the value of the variable.

If the --equal option is given, the null hypothesis incorporates the
assumption that positive and negative values are equiprobable, otherwise the
test statistic is invariant with respect to the "fairness" of the process
generating the sequence, and the test focuses on independence alone.

Menu path:    /Tools/Nonparametric tests

# scatters Graphs

Arguments:  yvar ; xvars  or yvars ; xvar 
Options:    --with-lines (create line graphs)
            --matrix=name (plot columns of named matrix)
            --output=filename (send output to specified file)
Examples:   scatters 1 ; 2 3 4 5
            scatters 1 2 3 4 5 6 ; 7
            scatters y1 y2 y3 ; x --with-lines

Generates pairwise graphs of yvar against all the variables in xvars, or of
all the variables in yvars against xvar. The first example above puts
variable 1 on the y-axis and draws four graphs, the first having variable 2
on the x-axis, the second variable 3 on the x-axis, and so on. The second
example plots each of variables 1 through 6 against variable 7 on the
x-axis. Scanning a set of such plots can be a useful step in exploratory
data analysis. The maximum number of plots is 16; any extra variable in the
list will be ignored.

By default the graphs are scatterplots, but if you give the --with-lines
flag they will be line graphs.

For details on usage of the --output option, please see the "gnuplot"
command.

If a named matrix is specified as the data source the x and y lists should
be given as 1-based column numbers; or alternatively, if no such numbers are
given, all the columns are plotted against time or an index variable.

If the dataset is time-series, then the second sub-list can be omitted, in
which case it will implicitly be taken as "time", so you can plot multiple
time series in separated sub-graphs.

Menu path:    /View/Multiple graphs

# sdiff Transformations

Argument:   varlist 

The seasonal difference of each variable in varlist is obtained and the
result stored in a new variable with the prefix sd_. This command is
available only for seasonal time series.

Menu path:    /Add/Seasonal differences of selected variables

# set Programming

Variants:   set variable value
            set --to-file=filename
            set --from-file=filename
            set stopwatch
            set
Examples:   set svd on
            set csv_delim tab
            set horizon 10
            set --to-file=mysettings.inp

The most common use of this command is the first variant shown above, where
it is used to set the value of a selected program parameter. This is
discussed in detail below. The other uses are: with --to-file, to write a
script file containing all the current parameter settings; with --from-file
to read a script file containing parameter settings and apply them to the
current session; with stopwatch to zero the gretl "stopwatch" which can be
used to measure CPU time (see the entry for the "$stopwatch" accessor); or,
if the word set is given alone, to print the current settings.

Values set via this comand remain in force for the duration of the gretl
session unless they are changed by a further call to "set". The parameters
that can be set in this way are enumerated below. Note that the settings of
hc_version, hac_lag and hac_kernel are used when the --robust option is
given to an estimation command.

The available settings are grouped under the following categories: program
interaction and behavior, numerical methods, random number generation,
robust estimation, filtering, time series estimation, and interaction with
GNU R.

Program interaction and behavior

These settings are used for controlling various aspects of the way gretl
interacts with the user.

  workdir: path. Sets the default directory for writing and reading files,
  whenever full paths are not specified.

  use_cwd: on or off (the default). Governs the setting of workdir at
  start-up: if it's on, the working directory is inherited from the shell,
  otherwise it is set to whatever was selected in the previous gretl
  session.

  echo: off or on (the default). Suppress or resume the echoing of commands
  in gretl's output.

  messages: off or on (the default). Suppress or resume the printing of
  non-error messages associated with various commands, for example when a
  new variable is generated or when the sample range is changed.

  verbose: off, on (the default) or comments. Acts as a "master switch" for
  echo and messages (see above), turning them both off or on simultaneously.
  The comments argument turns off echo and messages but preserves printing
  of comments in a script.

  warnings: off or on (the default). Suppress or resume the printing of
  warning messages issued when arithmetical operations produce non-finite
  values.

  csv_delim: either comma (the default), space, tab or semicolon. Sets the
  column delimiter used when saving data to file in CSV format.

  csv_write_na: the string used to represent missing values when writing
  data to file in CSV format. Maximum 7 characters; the default is NA.

  csv_read_na: the string taken to represent missing values (NAs) when
  reading data in CSV format. Maximum 7 characters. The default depends on
  whether a data column is found to contain numerical data (mostly) or
  string values. For numerical data the following are taken as indicating
  NAs: an empty cell, or any of the strings NA, N.A., na, n.a., N/A, #N/A,
  NaN, .NaN, ., .., -999, and -9999. For string-valued data only a blank
  cell, or a cell containing an empty string, is counted as NA. These
  defaults can be reimposed by giving default as the value for csv_read_na.
  To specify that only empty cells are read as NAs, give a value of "". Note
  that empty cells are always read as NAs regardless of the setting of this
  variable.

  csv_digits: a positive integer specifying the number of significant digits
  to use when writing data in CSV format. By default up to 15 digits are
  used depending on the precision of the original data. Note that CSV output
  employs the C library's fprintf function with "%g" conversion, which means
  that trailing zeros are dropped.

  display_digits: an integer from 3 to 6, specifying the number of
  significant digits to use when displaying regression coefficients and
  standard errors (the default being 6). This setting can also be used to
  limit the number of digits shown by the "summary" command; in this case
  the default (and also the maximum) is 5, or 4 when the --simple option is
  given.

  mwrite_g: on or off (the default). When writing a matrix to file as text,
  gretl by default uses scientific notation with 18-digit precision, hence
  ensuring that the stored values are a faithful representation of the
  numbers in memory. When writing primary data with no more than 6 digits of
  precision it may be preferable to use %g format for a more compact and
  human-readable file; you can make this switch via set mwrite_g on.

  force_decpoint: on or off (the default). Force gretl to use the decimal
  point character, in a locale where another character (most likely the
  comma) is the standard decimal separator.

  loop_maxiter: one non-negative integer value (default 100000). Sets the
  maximum number of iterations that a while loop is allowed before halting
  (see "loop"). Note that this setting only affects the while variant; its
  purpose is to guard against inadvertently infinite loops. Setting this
  value to 0 has the effect of disabling the limit; use with caution.

  max_verbose: off (the default), on or full. Controls the verbosity of
  commands and functions that use numerical optimization methods. The on
  choice applies only to functions (such as "BFGSmax" and "NRmax") which
  work silently by default; the effect is to print basic iteration
  information. The full setting can be used to trigger more detailed output,
  including parameter values and their respective gradient for the objective
  function at each iteration. This choice applies both to functions of the
  above-mentioned sort and to commands that rely on numerical optimization
  such as "arima", "probit" and "mle". In the case of commands the effect is
  to make their --verbose option produce more detail. See also chapter 37 of
  the Gretl User's Guide.

  debug: 1, 2 or 0 (the default). This is for use with user-defined
  functions. Setting debug to 1 is equivalent to turning messages on within
  all such functions; setting this variable to 2 has the additional effect
  of turning on max_verbose within all functions.

  shell_ok: on or off (the default). Enable launching external programs from
  gretl via the system shell. This is disabled by default for security
  reasons, and can only be enabled via the graphical user interface
  (Tools/Preferences/General). However, once set to on, this setting will
  remain active for future sessions until explicitly disabled.

  bfgs_verbskip: one integer. This setting affects the behavior of the
  --verbose option to those commands that use BFGS as an optimization
  algorithm and is used to compact output. if bfgs_verbskip is set to, say,
  3, then the --verbose switch will only print iterations 3, 6, 9 and so on.

  skip_missing: on (the default) or off. Controls gretl's behavior when
  contructing a matrix from data series: the default is to skip data rows
  that contain one or more missing values but if skip_missing is set off
  missing values are converted to NaNs.

  matrix_mask: the name of a series, or the keyword null. Offers greater
  control than skip_missing when constructing matrices from series: the data
  rows selected for matrices are those with non-zero (and non-missing)
  values in the specified series. The selected mask remains in force until
  it is replaced, or removed via the null keyword.

  quantile_type: must be one of Q6 (the default), Q7 or Q8. Selects the
  specific method used by the "quantile" function. For details see Hyndman
  and Fan (1996) or the Wikipedia entry at
  https://en.wikipedia.org/wiki/Quantile.

  huge: a large positive number (by default, 1.0E100). This setting controls
  the value returned by the accessor "$huge".

  assert: off (the default), warn or stop. Controls the consequences of
  failure (return value of 0) from the "assert" function.

  datacols: an integer from 1 to 15, with default value 5. Sets the maximum
  number of series shown side-by-side when data are displayed by
  observation.

  plot_collection: on, auto or off. This setting affects the way plots are
  displayed during interactive use. If it's on, plots of the same pixel size
  are gathered in a "plot collection", that is a single output window in
  which you can browse through the various plots going back and forth. With
  the off setting, instead, a different window for each plot will be
  generated, as in older gretl versions. Finally, the auto setting has the
  effect of enabling the plot collection mode only for graphs that are
  generated within 1.25 seconds from one another (for example, as a result
  of executing plotting commands in a loop).

Numerical methods

These settings are used for controlling the numerical algorithms that gretl
uses for estimation.

  optimizer: either auto (the default), BFGS or newton. Sets the
  optimization algorithm used for various ML estimators, in cases where both
  BFGS and Newton-Raphson are applicable. The default is to use
  Newton-Raphson where an analytical Hessian is available, otherwise BFGS.

  bhhh_maxiter: one integer, the maximum number of iterations for gretl's
  internal BHHH routine, which is used in the "arma" command for conditional
  ML estimation. If convergence is not achieved after bhhh_maxiter, the
  program returns an error. The default is set at 500.

  bhhh_toler: one floating point value, or the string default. This is used
  in gretl's internal BHHH routine to check if convergence has occurred. The
  algorithm stops iterating as soon as the increment in the log-likelihood
  between iterations is smaller than bhhh_toler. The default value is
  1.0E-06; this value may be re-established by typing default in place of a
  numeric value.

  bfgs_maxiter: one integer, the maximum number of iterations for gretl's
  BFGS routine, which is used for "mle", "gmm" and several specific
  estimators. If convergence is not achieved in the specified number of
  iterations, the program returns an error. The default value depends on the
  context, but is typically of the order of 500.

  bfgs_toler: one floating point value, or the string default. This is used
  in gretl's BFGS routine to check if convergence has occurred. The
  algorithm stops as soon as the relative improvement in the objective
  function between iterations is smaller than bfgs_toler. The default value
  is the machine precision to the power 3/4; this value may be
  re-established by typing default in place of a numeric value.

  bfgs_maxgrad: one floating point value. This is used in gretl's BFGS
  routine to check if the norm of the gradient is reasonably close to zero
  when the bfgs_toler criterion is met. A warning is printed if the norm of
  the gradient exceeds 1; an error is flagged if the norm exceeds
  bfgs_maxgrad. At present the default is the permissive value of 5.0.

  bfgs_richardson: on or off (the default). Use Richardson extrapolation
  when computing numerical derivatives in the context of BFGS maximization.

  initvals: the name of a predefined matrix. Allows manual setting of the
  initial parameter vector for certain estimation commands that involve
  numerical optimization: arma, garch, logit and probit, tobit and intreg,
  biprobit, duration, poisson, negbin, and also when imposing certain sorts
  of restriction associated with VECMs. Unlike other settings, initvals is
  not persistent: it resets to the default initializer after its first use.
  For details in connection with ARMA estimation see chapter 31 of the Gretl
  User's Guide.

  lbfgs: on or off (the default). Use the limited-memory version of BFGS
  (L-BFGS-B) instead of the ordinary algorithm. This may be advantageous
  when the function to be maximized is not globally concave.

  lbfgs_mem: an integer value in the range 3 to 20 (with a default value of
  8). This determines the number of corrections used in the limited memory
  matrix when L-BFGS-B is employed.

  nls_toler: a floating-point value. Sets the tolerance used in judging
  whether or not convergence has occurred in nonlinear least squares
  estimation using the "nls" command. The default value is the machine
  precision to the power 3/4; this value may be re-established by typing
  default in place of a numeric value.

  svd: on or off (the default). Use SVD rather than Cholesky or QR
  decomposition in least squares calculations. This option applies to the
  mols function as well as various internal calculations, but not to the
  regular "ols" command.

  force_qr: on or off (the default). This applies to the "ols" command. By
  default this command computes OLS estimates using Cholesky decomposition
  (the fastest method), with a fallback to QR if the data seem too
  ill-conditioned. You can use force_qr to skip the Cholesky step; in
  "doubtful" cases this may ensure greater accuracy.

  fcp: on or off (the default). Use the algorithm of Fiorentini, Calzolari
  and Panattoni rather than native gretl code when computing GARCH
  estimates.

  gmm_maxiter: one integer, the maximum number of iterations for gretl's
  "gmm" command when in iterated mode (as opposed to one- or two-step). The
  default value is 250.

  nadarwat_trim: one integer, the trim parameter used in the "nadarwat"
  function.

  fdjac_quality: one integer (0, 1 or 2), the algorithm used by the "fdjac"
  function; the default is 0.

  gmp_bits: one integer, which should be an integral power of 2 (default and
  minimum value 256, maximum 8192). Controls the number of bits used to
  represent a floating point number when GMP (the GNU Multiple Precision
  Arithmetic Library) is called, primarily via the mpols command. Larger
  values give greater precision at the cost of longer compute time. This
  setting can also be controlled by the environment variable GRETL_MP_BITS.

Random number generation

  seed: an unsigned integer or the keyword auto. Sets the seed for the
  pseudo-random number generator. By default this is set from the system
  time; if you want to generate repeatable sequences of random numbers you
  must set the seed manually. To reset the seed to a time-based automatic
  value, use auto.

Robust estimation

  bootrep: an integer. Sets the number of replications for the "restrict"
  command with the --bootstrap option.

  garch_vcv: unset, hessian, im (information matrix) , op (outer product
  matrix), qml (QML estimator), bw (Bollerslev-Wooldridge). Specifies the
  variant that will be used for estimating the coefficient covariance
  matrix, for GARCH models. If unset is given (the default) then the Hessian
  is used unless the "robust" option is given for the garch command, in
  which case QML is used.

  arma_vcv: hessian (the default) or op (outer product matrix). Specifies
  the variant to be used when computing the covariance matrix for ARIMA
  models.

  force_hc: off (the default) or on. By default, with time-series data and
  when the --robust option is given with ols, the HAC estimator is used. If
  you set force_hc to "on", this forces calculation of the regular
  Heteroskedasticity Consistent Covariance Matrix (HCCM), which does not
  take autocorrelation into account. Note that VARs are treated as a special
  case: when the --robust option is given the default method is regular
  HCCM, but the --robust-hac flag can be used to force the use of a HAC
  estimator.

  robust_z: off (the default) or on. This controls the distribution used
  when calculating p-values based on robust standard errors in the context
  of least-squares estimators. By default gretl uses the Student t
  distribution but if robust_z is turned on the normal distribution is used.

  hac_lag: nw1 (the default), nw2, nw3 or an integer. Sets the maximum lag
  value or bandwidth, p, used when calculating HAC (Heteroskedasticity and
  Autocorrelation Consistent) standard errors using the Newey-West approach,
  for time series data. nw1 and nw2 represent two variant automatic
  calculations based on the sample size, T: for nw1, p = 0.75 * T^(1/3), and
  for nw2, p = 4 * (T/100)^(2/9). nw3 calls for data-based bandwidth
  selection. See also qs_bandwidth and hac_prewhiten below.

  hac_kernel: bartlett (the default), parzen, or qs (Quadratic Spectral).
  Sets the kernel, or pattern of weights, used when calculating HAC standard
  errors.

  hac_prewhiten: on or off (the default). Use Andrews-Monahan prewhitening
  and re-coloring when computing HAC standard errors. This also implies use
  of data-based bandwidth selection.

  hc_version: 0 (the default), 1, 2, 3 or 3a. Sets the variant used when
  calculating Heteroskedasticity Consistent standard errors with
  cross-sectional data. The first four options correspond to the HC0, HC1,
  HC2 and HC3 discussed by Davidson and MacKinnon in Econometric Theory and
  Methods, chapter 5. HC0 produces what are usually called "White's standard
  errors". Variant 3a is the MacKinnon-White "jackknife" procedure.

  pcse: off (the default) or on. By default, when estimating a model using
  pooled OLS on panel data with the --robust option, the Arellano estimator
  is used for the covariance matrix. If you set pcse to "on", this forces
  use of the Beck and Katz Panel Corrected Standard Errors (which do not
  take autocorrelation into account).

  qs_bandwidth: Bandwidth for HAC estimation in the case where the Quadratic
  Spectral kernel is selected. (Unlike the Bartlett and Parzen kernels, the
  QS bandwidth need not be an integer.)

Time series

  horizon: one integer (the default is based on the frequency of the data).
  Sets the horizon for impulse responses and forecast variance
  decompositions in the context of vector autoregressions.

  vecm_norm: phillips (the default), diag, first or none. Used in the
  context of VECM estimation via the "vecm" command for identifying the
  cointegration vectors. See the chapter 33 of the Gretl User's Guide for
  details.

  boot_iters: one integer, B. Sets the number of bootstrap iterations used
  when computing impulse response functions with confidence intervals. The
  default is 1999. It is recommended that B + 1 is evenly divisible by
  100α/2, so for example with α = 0.1 B + 1 should be a multiple of 5. The
  minimum acceptable value is 499.

Interaction with R

  R_lib: on (the default) or off. When sending instructions to be executed
  by R, use the R shared library by preference to the R executable, if the
  library is available.

  R_functions: off (the default) or on. Recognize functions defined in R as
  if they were native functions (the namespace prefix "R." is required). See
  chapter 44 of the Gretl User's Guide for details on this and the previous
  item.

Miscellaneous

  mpi_use_smt: on or off (the default). This switch affects the default
  number of processes launched in an mpi block within a script. If the
  switch is off the default number of processes equals the number of
  physical cores on the local machine; if it's on the default is the maximum
  number of threads, which will be twice the number of physical cores if the
  cores support SMT (Simultaneous MultiThreading, also known as
  Hyper-Threading). This applies only if the user has not specified a number
  of processes, either directly or indirectly (by specifying a hosts file
  for use with MPI).

  graph_theme: a string, one of altpoints, classic, dark2 (the current
  default), ethan, iwanthue or sober. This sets the "theme" used for graphs
  produced by gretl. The classic option reverts to the single theme that was
  in force prior to version 2020c of gretl.

# setinfo Dataset

Argument:   series 
Options:    --description=string (set description)
            --graph-name=string (set graph name)
            --discrete (mark series as discrete)
            --continuous (mark series as continuous)
            --coded (mark as an encoding)
            --numeric (mark as not an encoding)
            --midas (mark as component of high-frequency data)
Examples:   setinfo x1 --description="Description of x1"
            setinfo y --graph-name="Some string"
            setinfo z --discrete

If the options --description or --graph-name are invoked the argument must
be a single series, otherwise it may be a list of series in which case it
operates on all members of the list. This command sets up to four attributes
as follows.

If the --description flag is given followed by a string in double quotes,
that string is used to set the variable's descriptive label. This label is
shown in response to the "labels" command, and is also shown in the main
window of the GUI program.

If the --graph-name flag is given followed by a quoted string, that string
will be used in place of the variable's name in graphs.

If one or other of the --discrete or --continuous option flags is given, the
variable's numerical character is set accordingly. The default is to treat
all series as continuous; setting a series as discrete affects the way the
variable is handled in other commands and functions, such as for example
"freq" or "dummify" .

If one or other of the --coded or --numeric option flags is given, the
status of the given series is set accordingly. The default is to treat all
numerical values as meaningful as such, at least in an ordinal sense;
setting a series as coded means that the numerical values are an arbitrary
encoding of qualitative characteristics.

The --midas option sets a flag indicating that a given series holds data of
a higher frequency than the base frequency of the dataset; for example, the
dataset is quarterly and the series holds values for month 1, 2 or 3 of each
quarter. (MIDAS = Mixed Data Sampling.)

Menu path:    /Variable/Edit attributes
Other access: Main window pop-up menu

# setmiss Dataset

Arguments:  value [ varlist ] 
Examples:   setmiss -1
            setmiss 100 x2

Get the program to interpret some specific numerical data value (the first
parameter to the command) as a code for "missing", in the case of imported
data. If this value is the only parameter, as in the first example above,
the interpretation will be applied to all series in the data set. If "value"
is followed by a list of variables, by name or number, the interpretation is
confined to the specified variable(s). Thus in the second example the data
value 100 is interpreted as a code for "missing", but only for the variable
x2.

Menu path:    /Data/Set missing value code

# setobs Dataset

Variants:   setobs periodicity startobs
            setobs unitvar timevar --panel-vars
Options:    --cross-section (interpret as cross section)
            --time-series (interpret as time series)
            --special-time-series (see below)
            --stacked-cross-section (interpret as panel data)
            --stacked-time-series (interpret as panel data)
            --panel-vars (use index variables, see below)
            --panel-time (see below)
            --panel-groups (see below)
Examples:   setobs 4 1990:1 --time-series
            setobs 12 1978:03
            setobs 1 1 --cross-section
            setobs 20 1:1 --stacked-time-series
            setobs unit year --panel-vars

This command forces the program to interpret the current data set as having
a specified structure.

In the first form of the command the periodicity, which must be an integer,
represents frequency in the case of time-series data (1 = annual; 4 =
quarterly; 12 = monthly; 52 = weekly; 5, 6, or 7 = daily; 24 = hourly). In
the case of panel data the periodicity means the number of lines per data
block: this corresponds to the number of cross-sectional units in the case
of stacked cross-sections, or the number of time periods in the case of
stacked time series. In the case of simple cross-sectional data the
periodicity should be set to 1.

The starting observation represents the starting date in the case of time
series data. Years may be given with two or four digits; subperiods (for
example, quarters or months) should be separated from the year with a colon.
In the case of panel data the starting observation should be given as 1:1;
and in the case of cross-sectional data, as 1. Starting observations for
daily or weekly data should be given in the form YYYY-MM-DD (or simply as 1
for undated data).

Certain time-series periodicities have standard interpretations -- for
example, 12 = monthly and 4 = quarterly. If you have unusual time-series
data to which the standard interpretation does not apply, you can signal
this by giving the --special-time-series option. In that case gretl will not
(for example) report your frequency-12 data as being monthly.

If no explicit option flag is given to indicate the structure of the data
the program will attempt to guess the structure from the information given.

The second form of the command (which requires the --panel-vars flag) may be
used to impose a panel interpretation when the data set contains variables
that uniquely identify the cross-sectional units and the time periods. The
data set will be sorted as stacked time series, by ascending values of the
units variable, unitvar.

Panel-specific options

The --panel-time and --panel-groups options can only be used with a dataset
which has already been defined as a panel.

The purpose of --panel-time is to set extra information regarding the time
dimension of the panel. This should be given on the pattern of the first
form of setobs noted above. For example, the following may be used to
indicate that the time dimension of a panel is quarterly, starting in the
first quarter of 1990.

	setobs 4 1990:1 --panel-time

The purpose of --panel-groups is to create a string-valued series holding
names for the groups (individuals, cross-sectional units) in the panel.
(This will be used where appropriate in panel graphs.) With this option you
supply either one or two arguments as follows.

First case: the (single) argument is the name of a string-valued series. If
the number of distinct values equals the number of groups in the panel this
series is used to define the group names. If necessary, the numerical
content of the series will be adjusted such that the values are all 1s for
the first group, all 2s for the second, and so on. If the number of string
values doesn't match the number of groups an error is flagged.

Second case: the first argument is the name of a series and the second is a
string literal or variable holding a name for each group. The series will be
created if it does not already exist. If the second argument is a string
literal or string variable the group names should be separated by spaces; if
a name includes spaces it should be wrapped in backslash-escaped
double-quotes. Alternatively the second argument may be an array of strings.

For example, the following will create a series named country in which the
names in cstrs are each repeated T times, T being the time-series length of
the panel.

	string cstrs = sprintf("France Germany Italy \"United Kingdom\"")
	setobs country cstrs --panel-groups

Menu path:    /Data/Dataset structure

# setopt Programming

Arguments:  command [ action ] options 
Examples:   setopt mle --hessian
            setopt ols persist --quiet
            setopt ols clear
            See also gdp_midas.inp

This command enables the pre-setting of options for a specified command.
Ordinarily this is not required, but it may be useful for the writers of
hansl functions when they wish to make certain command options conditional
on the value of an argument supplied by the caller.

For example, suppose a function offers a boolean "quiet" switch, whose
intended effect is to suppress the printing of results from a certain
regression executed within the function. In that case one might write:

	if quiet
	  setopt ols --quiet
	endif
	ols ...

The --quiet option will then be applied to the next ols command if and only
if the variable quiet has a non-zero value.

By default, options set in this way apply only to the following instance of
command; they are not persistent. However if you give persist as the value
for action the options will continue to apply to the given command until
further notice. The antidote to the persist action is clear: this erases any
stored setting for the specified command.

It should be noted that options set via setopt are compounded with any
options attached to the target command directly. So for example one might
append the --hessian option to an mle command unconditionally but use setopt
to add --quiet conditionally.

# shell Utilities

Argument:   shellcommand 
Examples:   ! ls -al
            ! dir c:\users
            launch notepad
            launch emacs myfile.txt

The facility described here is not activated by default. See below for
details.

An exclamation mark, "!", at the beginning of a command line is interpreted
as an escape to the user's shell. Thus arbitrary shell commands can be
executed from within gretl. The shellcommand argument is passed to /bin/sh
on unix-type systems such as Linux and macOS or to cmd.exe on MS Windows. It
is executed in synchronous mode -- gretl waits for it to complete before
proceeding. If the command outputs any text this is printed to the console
or script output window.

A variant of synchronous shell access allows the user to "grab" the output
of a command into a string variable. This is achieved by wrapping the
command in parentheses, preceded by a dollar sign, as in

	string s = $(ls -l $HOME)

The "launch" keyword, on the other hand, executes an external program
asynchronously (without waiting for completion), as in the third and fourth
examples above. This is designed for opening an application in interactive
mode. The user's PATH is searched for the specified executable. On MS
Windows the command is executed directly, not passed to cmd.exe (so
environment variables are not expanded automatically).

Activation

For reasons of security the shell-access facility is not enabled by default.
To activate it, check the box titled "Allow shell commands" under
Tools/Preferences/General in the GUI program. This also makes shell commands
available in the command-line program (and is the only way to do so).

# smpl Dataset

Variants:   smpl startobs endobs
            smpl +i -j
            smpl dumvar --dummy
            smpl condition --restrict
            smpl --no-missing [ varlist ]
            smpl --no-all-missing [ varlist ]
            smpl --contiguous [ varlist ]
            smpl n --random
            smpl full
Options:    --dummy (argument is a dummy variable)
            --restrict (apply boolean restriction)
            --replace (replace any existing boolean restriction)
            --no-missing (restrict to valid observations)
            --no-all-missing (omit empty observations (see below))
            --contiguous (see below)
            --random (form random sub-sample)
            --permanent (see below)
            --preserve-panel (panel data: see below)
            --unit (panel data: sample in cross-sectional dimension)
            --time (panel data: sample in time-series dimension)
            --dates (interpret observation numbers as dates)
            --quiet (don't report sample range)
Examples:   smpl 3 10
            smpl 1960:2 1982:4
            smpl +1 -1
            smpl x > 3000 --restrict
            smpl y > 3000 --restrict --replace
            smpl 100 --random

Resets the sample range. The new range can be defined in several ways. In
the first alternate form (and the first two examples) above, startobs and
endobs must be consistent with the periodicity of the data. Either one may
be replaced by a semicolon to leave the value unchanged. (For more on
startobs and endobs see the section titled "Dates versus sequential indices"
below.) In the second form, the integers i and j (which may be positive or
negative, and must be signed) are taken as offsets relative to the existing
sample range. In the third form dummyvar must be an indicator variable with
values 0 or 1 at each observation; the sample will be restricted to
observations where the value is 1. The fourth form, using --restrict,
restricts the sample to observations that satisfy the given Boolean
condition.

The options --no-missing and --no-all-missing may be used to exclude from
the sample observations for which data are missing. The first variant
excludes those rows in the dataset for which at least one variable has a
missing value, while the second excludes just those rows on which all
variables have missing values. In each case the test is confined to the
variables in varlist if this argument is given, otherwise it is applied to
all series -- with the qualification that in the case of --no-all-missing
and no varlist, the generic variables index and time are ignored.

The --contiguous form of smpl is intended for use with time series data. The
effect is to trim any observations at the start and end of the current
sample range that contain missing values (either for the variables in
varlist, or for all data series if no varlist is given). Then a check is
performed to see if there are any missing values in the remaining range; if
so, an error is flagged.

With the --random flag, the specified number of cases are selected from the
current dataset at random (without replacement). If you wish to be able to
replicate this selection you should set the seed for the random number
generator first (see the "set" command).

The final form, smpl full, restores the full data range.

Note that sample restrictions are, by default, cumulative: the baseline for
any smpl command is the current sample. If you wish the command to act so as
to replace any existing restriction you can add the option flag --replace to
the end of the command. (But this option is not compatible with the
--contiguous option.)

The internal variable obs may be used with the --restrict form of smpl to
exclude particular observations from the sample. For example

	smpl obs!=4 --restrict

will drop just the fourth observation. If the data points are identified by
labels,

	smpl obs!="USA" --restrict

will drop the observation with label "USA".

One point should be noted about the --dummy, --restrict and --no-missing
forms of smpl: "structural" information in the data file (regarding the time
series or panel nature of the data) is likely to be lost when this command
is issued. You may reimpose structure with the "setobs" command, but also
see the --preserve-panel option below.

Dates versus sequential indices

The --dates option can be used to resolve a potential ambiguity in the
interpretation of startobs and endobs in the case of annual time-series
data. For example, should 2010 be taken to refer to the year 2010, or to the
two-thousand-and-tenth observation? In most cases this should come out right
automatically but you can force the date interpretation if needed. This
option can also be used with dated daily data, to get smpl to interpret, for
example, 20100301 as the first of March 2010 rather than a plain sequential
index. Note that this ambiguity does not arise with time series frequencies
other than annual and daily; dates such as 1980:3 (third quarter of 1980)
and 2020:03 (March 2020) cannot be confused with plain indices.

Panel-specific options

The --unit and --time options are specific to panel data. They allow you to
specify, respectively, a range of "units" or time-periods. For example:

	# limit the sample to the first 50 units
	smpl 1 50 --unit
	# limit the sample to periods 2 to 20
	smpl 2 20 --time

If the time dimension of a panel dataset has been specified via the "setobs"
command with the --panel-time option, smpl with the --time option can be
expressed in terms of dates rather than plain observation numbers. Here's an
example:

	# specify panel time as quarterly, starting in Q1 of 1990
	setobs 4 1990:1 --panel-time
	# limit the sample to 2000:1 to 2007:1
	smpl 2000:1 2007:1 --time

In gretl, a panel dataset must always be "nominally balanced" -- that is,
each unit must have the same number of data rows, even if some rows contain
nothing but NAs. Sub-sampling via the --restrict or --dummy options may
destroy this structure. In that case the --preserve-panel flag can be added
to request that a nominally balanced panel is reconstituted, via the
insertion of "missing rows" if needed.

Permanent versus temporary sampling

By default, restrictions on the current sample range can be undone: you can
restore the full dataset via smpl full. However, the --permanent flag can be
used to substitute the restricted dataset for the original. If you give the
--permanent option with no other arguments or options the effect is to
shrink the dataset to the current sample range.

Please see chapter 5 of the Gretl User's Guide for further details.

Menu path:    /Sample

# spearman Statistics

Arguments:  series1 series2 
Option:     --verbose (print ranked data)

Prints Spearman's rank correlation coefficient for the series series1 and
series2. The variables do not have to be ranked manually in advance; the
function takes care of this.

The automatic ranking is from largest to smallest (i.e. the largest data
value gets rank 1). If you need to invert this ranking, create a new
variable which is the negative of the original. For example:

	series altx = -x
	spearman altx y

Menu path:    /Tools/Nonparametric tests/Correlation

# sprintf Printing

Obsolete command: please use the "sprintf" function instead.

# square Transformations

Argument:   varlist 
Option:     --cross (generate cross-products as well as squares)

Generates new series which are squares of the series in varlist (plus
cross-products if the --cross option is given). For example, "square x y"
will generate sq_x = x squared, sq_y = y squared and (optionally) x_y = x
times y. If a particular variable is a dummy variable it is not squared
because we will get the same variable.

Menu path:    /Add/Squares of selected variables

# stdize Transformations

Argument:   varlist 
Options:    --no-df-corr (no degrees of freedom correction)
            --center-only (don't divide by s.d.)

By default a standardized version of each of the series in varlist is
obtained and the result stored in a new series with the prefix s_. For
example, "stdize x y" creates the new series s_x and s_y, each of which is
centered and divided by its sample standard deviation (with a degrees of
freedom correction of 1).

If the --no-df-corr option is given no degrees of freedom correction is
applied; the standard deviation used is the maximum likelihood estimator. If
--center-only is given the series just have their means subtracted, and in
that case the output names have prefix c_ rather than s_.

The functionality of this command is available in somewhat more flexible
form via the "stdize" function.

Menu path:    /Add/Standardize selected variables

# store Dataset

Arguments:  filename [ varlist ] 
Options:    --omit-obs (see below, on CSV format)
            --no-header (see below, on CSV format)
            --gnu-octave (use GNU Octave format)
            --gnu-R (format friendly for read.table)
            --gzipped[=level] (apply gzip compression)
            --jmulti (use JMulti ASCII format)
            --dat (use PcGive ASCII format)
            --decimal-comma (use comma as decimal character)
            --database (use gretl database format)
            --overwrite (see below, on database format)
            --comment=string (see below)
            --matrix=matrix-name (see below)

Save data to filename. By default all currently defined series are saved but
the optional varlist argument can be used to select a subset of series. If
the dataset is sub-sampled, only the observations in the current sample
range are saved.

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification.

Note that the store command behaves in a special manner in the context of a
"progressive loop"; see chapter 13 of the Gretl User's Guide for details.

Native formats

If filename has extension .gdt or .gtdb this implies saving the data in one
of gretl's native formats. In addition, if no extension is given .gdt is
taken to be implicit and the suffix is added automatically. The gdt format
is XML, optionally gzip-compressed, while the gdtb format is binary. The
former is recommended for datasets of moderate size (say, up to several
hundred kilobytes of data); the binary format is much faster for very large
datasets.

When data are saved in gdt format the --gzipped option may be used for data
compression. The optional parameter for this flag controls the level of
compression (from 0 to 9): higher levels produce a smaller file, but
compression takes longer. The default level is 1; a level of 0 means that no
compression is applied.

A special sort of "native" save is supported in the GUI program: if filename
has extension .gretl and the varlist argument is omitted, then a gretl
session file is written. Such files include the current dataset along with
any named objects such as models, graphs and matrices.

Other formats

The format in which the data are written may be controlled to a degree by
the extension or suffix of filename, as follows:

  .csv: comma-separated values (CSV).

  .txt or .asc: space-separated values.

  .m: GNU Octave matrix format.

  .dta: Stata dta format (version 113).

The format-related option flags shown above can be used to force the choice
of format independently of the filename (or to get gretl to write in the
formats of PcGive or JMulTi).

CSV options

The option flags --omit-obs and --no-header are specific to saving data in
CSV format. By default, if the data are time series or panel, or if the
dataset includes specific observation markers, the output file includes a
first column identifying the observations (e.g. by date). If the --omit-obs
flag is given this column is omitted. The --no-header flag suppresses the
usual printing of the names of the variables at the top of the columns.

The option flag --decimal-comma is also confined to CSV. Its effect is to
replace the decimal point with decimal comma; in addition the column
separator is forced to be a semicolon rather than a comma.

Storing to a database

The option of saving in gretl database format is intended to help with the
construction of large sets of series with mixed frequencies and ranges of
observations. At present this option is available only for annual, quarterly
or monthly time-series data. If you save to a file that already exists, the
default action is to append the newly saved series to the existing content
of the database. In this context it is an error if one or more of the
variables to be saved has the same name as a variable that is already
present in the database. The --overwrite flag has the effect that, if there
are variable names in common, the newly saved variable replaces the variable
of the same name in the original dataset.

The --comment option is available when saving data as a database or as CSV.
The required parameter is a double-quoted one-line string, attached to the
option flag with an equals sign. The string is inserted as a comment into
the database index file or at the top of the CSV output.

Writing a matrix as a dataset

The --matrix option requires a parameter, the name of a (non-empty) matrix.
The effect of store is then, in effect, to turn the matrix into a dataset
"in the background" and write it to file as such. Matrix columns become
series; their names are taken from column-names attached to the matrix, if
any, or by default are assigned as v1, v2 and so on. If the matrix has row
names attached these are used as "observation markers" in the dataset.

Note that matrices can be written to file in their own right, see the
"mwrite" function. But in some cases it may be useful to write them in
dataset mode.

Menu path:    /File/Save data; /File/Export data

# summary Statistics

Variants:   summary [ varlist ]
            summary --matrix=matname
Options:    --simple (basic statistics only)
            --weight=wvar (weighting variable)
            --by=byvar (see below)
Examples:   frontier.inp

In its first form, this command prints summary statistics for the variables
in varlist, or for all the variables in the data set if varlist is omitted.
By default, output consists of the mean, standard deviation (sd),
coefficient of variation (= sd/mean), median, minimum, maximum, skewness
coefficient, and excess kurtosis. If the --simple option is given, output is
restricted to the mean, minimum, maximum and standard deviation.

If the --by option is given (in which case the parameter byvar should be the
name of a discrete variable), then statistics are printed for sub-samples
corresponding to the distinct values taken on by byvar. For example, if
byvar is a (binary) dummy variable, statistics are given for the cases byvar
= 0 and byvar = 1. Note: at present, this option is incompatible with the
--weight option.

If the alternative form is given, using a named matrix, then summary
statistics are printed for each column of the matrix. The --by option is not
available in this case.

The table of statistics produced by summary can be retrieved in matrix form
via the "$result" accessor.

Menu path:    /View/Summary statistics
Other access: Main window pop-up menu

# system Estimation

Variants:   system method=estimator
            sysname <- system
Examples:   "Klein Model 1" <- system
            system method=sur
            system method=3sls
            See also klein.inp, kmenta.inp, greene14_2.inp

Starts a system of equations. Either of two forms of the command may be
given, depending on whether you wish to save the system for estimation in
more than one way or just estimate the system once.

To save the system you should assign it a name, as in the first example (if
the name contains spaces it must be surrounded by double quotes). In this
case you estimate the system using the "estimate" command. With a saved
system of equations, you are able to impose restrictions (including
cross-equation restrictions) using the "restrict" command.

Alternatively you can specify an estimator for the system using method=
followed by a string identifying one of the supported estimators: "ols"
(Ordinary Least Squares), "tsls" (Two-Stage Least Squares) "sur" (Seemingly
Unrelated Regressions), "3sls" (Three-Stage Least Squares), "fiml" (Full
Information Maximum Likelihood) or "liml" (Limited Information Maximum
Likelihood). In this case the system is estimated once its definition is
complete.

An equation system is terminated by the line "end system". Within the system
four sorts of statement may be given, as follows.

  "equation": specify an equation within the system.

  "instr": for a system to be estimated via Three-Stage Least Squares, a
  list of instruments (by variable name or number). Alternatively, you can
  put this information into the "equation" line using the same syntax as in
  the "tsls" command.

  "endog": for a system of simultaneous equations, a list of endogenous
  variables. This is primarily intended for use with FIML estimation, but
  with Three-Stage Least Squares this approach may be used instead of giving
  an "instr" list; then all the variables not identified as endogenous will
  be used as instruments.

  "identity": for use with FIML, an identity linking two or more of the
  variables in the system. This sort of statement is ignored when an
  estimator other than FIML is used.

After estimation using the "system" or "estimate" commands the following
accessors can be used to retrieve additional information:

  $uhat: the matrix of residuals, one column per equation.

  $yhat: matrix of fitted values, one column per equation.

  $coeff: column vector of coefficients (all the coefficients from the first
  equation, followed by those from the second equation, and so on).

  $vcv: covariance matrix of the coefficients. If there are k elements in
  the $coeff vector, this matrix is k by k.

  $sigma: cross-equation residual covariance matrix.

  $sysGamma, $sysA and $sysB: structural-form coefficient matrices (see
  below).

If you want to retrieve the residuals or fitted values for a specific
equation as a data series, select a column from the $uhat or $yhat matrix
and assign it to a series, as in

	series uh1 = $uhat[,1]

The structural-form matrices correspond to the following representation of a
simultaneous equations model:

  Gamma y(t) = A y(t-1) + B x(t) + e(t)

If there are n endogenous variables and k exogenous variables, Gamma is an n
x n matrix and B is n x k. If the system contains no lags of the endogenous
variables then the A matrix is not present. If the maximum lag of an
endogenous regressor is p, the A matrix is n x np.

Menu path:    /Model/Simultaneous equations

# tabprint Printing

Options:    --output=filename (send output to specified file)
            --format="f1|f2|f3|f4" (Specify custom TeX format)
            --complete (TeX-related, see below)

Must follow the estimation of a model. Prints the model in tabular form. The
format is governed by the extension of the specified filename: ".tex" for
LaTeX, ".rtf" for RTF (Microsoft's Rich Text Format), or ".csv" for
comma-separated. The file will be written in the currently set "workdir",
unless filename contains a full path specification.

If CSV format is selected, values are comma-separated unless the decimal
comma is in force, in which case the separator is the semicolon.

Options specific to LaTeX output

If the --complete flag is given the LaTeX file is a complete document, ready
for processing; otherwise it must be included in a document.

If you wish alter the appearance of the tabular output, you can specify a
custom row format using the --format flag. The format string must be
enclosed in double quotes and must be tied to the flag with an equals sign.
The pattern for the format string is as follows. There are four fields,
representing the coefficient, standard error, t-ratio and p-value
respectively. These fields should be separated by vertical bars; they may
contain a printf-type specification for the formatting of the numeric value
in question, or may be left blank to suppress the printing of that column
(subject to the constraint that you can't leave all the columns blank). Here
are a few examples:

	--format="%.4f|%.4f|%.4f|%.4f"
	--format="%.4f|%.4f|%.3f|"
	--format="%.5f|%.4f||%.4f"
	--format="%.8g|%.8g||%.4f"

The first of these specifications prints the values in all columns using 4
decimal places. The second suppresses the p-value and prints the t-ratio to
3 places. The third omits the t-ratio. The last one again omits the t, and
prints both coefficient and standard error to 8 significant figures.

Once you set a custom format in this way, it is remembered and used for the
duration of the gretl session. To revert to the default format you can use
the special variant --format=default.

Menu path:    Model window, /LaTeX

# textplot Graphs

Argument:   varlist 
Options:    --time-series (plot by observation)
            --one-scale (force a single scale)
            --tall (use 40 rows)

Quick and simple ASCII graphics. Without the --time-series flag, varlist
must contain at least two series, the last of which is taken as the variable
for the x axis, and a scatter plot is produced. In this case the --tall
option may be used to produce a graph in which the y axis is represented by
40 rows of characters (the default is 20 rows).

With the --time-series, a plot by observation is produced. In this case the
option --one-scale may be used to force the use of a single scale; otherwise
if varlist contains more than one series the data may be scaled. Each line
represents an observation, with the data values plotted horizontally.

See also "gnuplot".

# tobit Estimation

Arguments:  depvar indepvars 
Options:    --llimit=lval (specify left bound)
            --rlimit=rval (specify right bound)
            --vcv (print covariance matrix)
            --robust (robust standard errors)
            --opg (see below)
            --cluster=clustvar (see "logit" for explanation)
            --verbose (print details of iterations)
            --quiet (don't print results)

Estimates a Tobit model, which may be appropriate when the dependent
variable is "censored". For example, positive and zero values of purchases
of durable goods on the part of individual households are observed, and no
negative values, yet decisions on such purchases may be thought of as
outcomes of an underlying, unobserved disposition to purchase that may be
negative in some cases.

By default it is assumed that the dependent variable is censored at zero on
the left and is uncensored on the right. However you can use the options
--llimit and --rlimit to specify a different pattern of censoring. Note that
if you specify a right bound only, the assumption is then that the dependent
variable is uncensored on the left.

The Tobit model is a special case of interval regression. Please see the
"intreg" command for further details, including an account of the --robust
and --opg options.

Menu path:    /Model/Limited dependent variable/Tobit

# tsls Estimation

Arguments:  depvar indepvars ; instruments 
Options:    --no-tests (don't do diagnostic tests)
            --vcv (print covariance matrix)
            --quiet (don't print results)
            --no-df-corr (no degrees-of-freedom correction)
            --robust (robust standard errors)
            --cluster=clustvar (clustered standard errors)
            --liml (use Limited Information Maximum Likelihood)
            --gmm (use the Generalized Method of Moments)
Examples:   tsls y1 0 y2 y3 x1 x2 ; 0 x1 x2 x3 x4 x5 x6
            See also penngrow.inp

Computes Instrumental Variables (IV) estimates, by default using two-stage
least squares (TSLS) but see below for further options. The dependent
variable is depvar, indepvars is the list of regressors (which is presumed
to include at least one endogenous variable); and instruments is the list of
instruments (exogenous and/or predetermined variables). If the instruments
list is not at least as long as indepvars, the model is not identified.

In the above example, the ys are endogenous and the xs are the exogenous
variables. Note that exogenous regressors should appear in both lists.

Output for two-stage least squares estimates includes the Hausman test and,
if the model is over-identified, the Sargan over-identification test. In the
Hausman test, the null hypothesis is that OLS estimates are consistent, or
in other words estimation by means of instrumental variables is not really
required. A model of this sort is over-identified if there are more
instruments than are strictly required. The Sargan test is based on an
auxiliary regression of the residuals from the two-stage least squares model
on the full list of instruments. The null hypothesis is that all the
instruments are valid, and suspicion is thrown on this hypothesis if the
auxiliary regression has a significant degree of explanatory power. For a
good explanation of both tests see chapter 8 of Davidson and MacKinnon
(2004).

For both TSLS and LIML estimation, an additional test result is shown
provided that the model is estimated under the assumption of i.i.d. errors
(that is, the --robust option is not selected). This is a test for weakness
of the instruments. Weak instruments can lead to serious problems in IV
regression: biased estimates and/or incorrect size of hypothesis tests based
on the covariance matrix, with rejection rates well in excess of the nominal
significance level (Stock, Wright and Yogo, 2002). The test statistic is the
first-stage F-test if the model contains just one endogenous regressor,
otherwise it is the smallest eigenvalue of the matrix counterpart of the
first stage F. Critical values based on the Monte Carlo analysis of Stock
and Yogo (2003) are shown when available.

The R-squared value printed for models estimated via two-stage least squares
is the square of the correlation between the dependent variable and the
fitted values.

For details on the effects of the --robust and --cluster options, please see
the help for "ols".

As alternatives to TSLS, the model may be estimated via Limited Information
Maximum Likelihood (the --liml option) or via the Generalized Method of
Moments (--gmm option). Note that if the model is just identified these
methods should produce the same results as TSLS, but if it is
over-identified the results will differ in general.

If GMM estimation is selected, the following additional options become
available:

  --two-step: perform two-step GMM rather than the default of one-step.

  --iterate: Iterate GMM to convergence.

  --weights=Wmat: specify a square matrix of weights to be used when
  computing the GMM criterion function. The dimension of this matrix must
  equal the number of instruments. The default is an appropriately sized
  identity matrix.

Menu path:    /Model/Instrumental variables

# var Estimation

Arguments:  order ylist [ ; xlist ] 
Options:    --nc (do not include a constant)
            --trend (include a linear trend)
            --seasonals (include seasonal dummy variables)
            --robust (robust standard errors)
            --robust-hac (HAC standard errors)
            --quiet (skip output of individual equations)
            --silent (don't print anything)
            --impulse-responses (print impulse responses)
            --variance-decomp (print variance decompositions)
            --lagselect (show criteria for lag selection)
            --minlag=minimum lag (lag selection only, see below)
Examples:   var 4 x1 x2 x3 ; time mydum
            var 4 x1 x2 x3 --seasonals
            var 12 x1 x2 x3 --lagselect
            See also sw_ch14.inp

Sets up and estimates (using OLS) a vector autoregression (VAR). The first
argument specifies the lag order -- or the maximum lag order in case the
--lagselect option is given (see below). The order may be given numerically,
or as the name of a pre-existing scalar variable. Then follows the setup for
the first equation. Do not include lags among the elements of ylist -- they
will be added automatically. The semi-colon separates the stochastic
variables, for which order lags will be included, from any exogenous
variables in xlist. Note that a constant is included automatically unless
you give the --nc flag, a trend can be added with the --trend flag, and
seasonal dummy variables may be added using the --seasonals flag.

While a VAR specification usually includes all lags from 1 to a given
maximum, it is possible to select a specific set of lags. To do this,
substitute for the regular (scalar) order argument either the name of a
predefined vector or a comma-separated list of lags, enclosed in braces. We
show below two ways of specifying that a VAR should include lags 1, 2 and 4
(but not lag 3):

	var {1,2,4} ylist
	matrix p = {1,2,4}
	var p ylist

A separate regression is reported for each variable in ylist. Output for
each equation includes F-tests for zero restrictions on all lags of each of
the variables, an F-test for the significance of the maximum lag, and, if
the --impulse-responses flag is given, forecast variance decompositions and
impulse responses.

Forecast variance decompositions and impulse responses are based on the
Cholesky decomposition of the contemporaneous covariance matrix, and in this
context the order in which the (stochastic) variables are given matters. The
first variable in the list is assumed to be "most exogenous" within-period.
The horizon for variance decompositions and impulse responses can be set
using the "set" command. For retrieval of a specified impulse response
function in matrix form, see the "irf" function.

If the --robust option is given, standard errors are corrected for
heteroskedasticity. Alternatively, the --robust-hac option can be given to
produce standard errors that are robust with respect to both
heteroskedasticity and autocorrelation (HAC). In general the latter
correction should not be needed if the VAR includes sufficient lags.

If the --lagselect option is given, the first parameter to the var command
is taken as the maximum lag order. Output consists of a table showing the
values of the Akaike (AIC), Schwarz (BIC) and Hannan-Quinn (HQC) information
criteria, by default computed from VARs of order 1 to the given maximum.
This is intended to help with the selection of the optimal lag order. The
usual VAR output is not presented. The table of information criteria may be
retrieved as a matrix via the "$test" accessor. In this context (only) the
--minlag option can be used to adjust the minimum lag order. Set this to 0
to allow for the possibility that the optimal lag order is zero, meaning
that a VAR is not really called for at all. Conversely you could set
--minlag=4 if you believe you need at least 4 lags, thereby saving a little
compute time.

Menu path:    /Model/Multivariate time series

# varlist Dataset

Option:     --type=typename (scope of listing)

By default, prints a listing of the series in the current dataset (if any);
"ls" may be used as an alias.

If the --type option is given, it should be followed (after an equals sign)
by one of the following typenames: series, scalar, matrix, list, string,
bundle, array or accessor. The effect is to print the names of all currently
defined objects of the named type.

As a special case, if the typename is accessor, the names printed are those
of the internal variables currently available as "accessors", such as
"$nobs" and "$uhat", regardless of their specific type.

# vartest Tests

Arguments:  series1 series2 

Calculates the F statistic for the null hypothesis that the population
variances for the variables series1 and series2 are equal, and shows its
p-value. The test statistics and the p-value can be retrieved through the
accessors "$test" and "$pvalue", respectively. The following code

      	open AWM18.gdt
		vartest EEN EXR
		eval $test
		eval $pvalue

computes the test and shows how to retrieve the test statistics and
corresponding p-value afterwards:

		Equality of variances test

		EEN: Number of observations = 192
		EXR: Number of observations = 188
		Ratio of sample variances = 3.70707
		Null hypothesis: The two population variances are equal
		Test statistic: F(191,187) = 3.70707
		p-value (two-tailed) = 1.94866e-18

		3.7070716
		1.9486605e-18

Menu path:    /Tools/Test statistic calculator

# vecm Estimation

Arguments:  order rank ylist [ ; xlist ] [ ; rxlist ] 
Options:    --nc (no constant)
            --rc (restricted constant)
            --uc (unrestricted constant)
            --crt (constant and restricted trend)
            --ct (constant and unrestricted trend)
            --seasonals (include centered seasonal dummies)
            --quiet (skip output of individual equations)
            --silent (don't print anything)
            --impulse-responses (print impulse responses)
            --variance-decomp (print variance decompositions)
Examples:   vecm 4 1 Y1 Y2 Y3
            vecm 3 2 Y1 Y2 Y3 --rc
            vecm 3 2 Y1 Y2 Y3 ; X1 --rc
            See also denmark.inp, hamilton.inp

A VECM is a form of vector autoregression or VAR (see "var"), applicable
where the variables in the model are individually integrated of order 1
(that is, are random walks, with or without drift), but exhibit
cointegration. This command is closely related to the Johansen test for
cointegration (see "johansen").

The order parameter to this command represents the lag order of the VAR
system. The number of lags in the VECM itself (where the dependent variable
is given as a first difference) is one less than order.

The rank parameter represents the cointegration rank, or in other words the
number of cointegrating vectors. This must be greater than zero and less
than or equal to (generally, less than) the number of endogenous variables
given in ylist.

ylist supplies the list of endogenous variables, in levels. The inclusion of
deterministic terms in the model is controlled by the option flags. The
default if no option is specified is to include an "unrestricted constant",
which allows for the presence of a non-zero intercept in the cointegrating
relations as well as a trend in the levels of the endogenous variables. In
the literature stemming from the work of Johansen (see for example his 1995
book) this is often referred to as "case 3". The first four options given
above, which are mutually exclusive, produce cases 1, 2, 4 and 5
respectively. The meaning of these cases and the criteria for selecting a
case are explained in chapter 33 of the Gretl User's Guide.

The optional lists xlist and rxlist allow you to specify sets of exogenous
variables which enter the model either unrestrictedly (xlist) or restricted
to the cointegration space (rxlist). These lists are separated from ylist
and from each other by semicolons.

The --seasonals option, which may be combined with any of the other options,
specifies the inclusion of a set of centered seasonal dummy variables. This
option is available only for quarterly or monthly data.

The first example above specifies a VECM with lag order 4 and a single
cointegrating vector. The endogenous variables are Y1, Y2 and Y3. The second
example uses the same variables but specifies a lag order of 3 and two
cointegrating vectors; it also specifies a "restricted constant", which is
appropriate if the cointegrating vectors may have a non-zero intercept but
the Y variables have no trend.

Following estimation of a VECM some special accessors are available:
$jalpha, $jbeta and $jvbeta retrieve, respectively, the α and beta matrices
and the estimated variance of beta. For retrieval of a specified impulse
response function in matrix form, see the "irf" function.

Menu path:    /Model/Multivariate time series

# vif Tests

Option:     --quiet (don't print anything)
Examples:   longley.inp

Must follow the estimation of a model which includes at least two
independent variables. Calculates and displays diagnostic information
pertaining to collinearity.

The Variance Inflation Factor or VIF for regressor j is defined as

  1/(1 - Rj^2)

where R_j is the coefficient of multiple correlation between regressor j and
the other regressors. The factor has a minimum value of 1.0 when the
variable in question is orthogonal to the other independent variables.
Neter, Wasserman, and Kutner (1990) suggest inspecting the largest VIF as a
diagnostic for collinearity; a value greater than 10 is sometimes taken as
indicating a problematic degree of collinearity.

Following this command the "$result" accessor may be used to retrieve a
column vector holding the VIFs. For a more sophisticated approach to
diagnosing collinearity, see the "bkw" command.

Menu path:    Model window, /Analysis/Collinearity

# wls Estimation

Arguments:  wtvar depvar indepvars 
Options:    --vcv (print covariance matrix)
            --robust (robust standard errors)
            --quiet (suppress printing of results)
            --allow-zeros (see below)

Computes weighted least squares (WLS) estimates using wtvar as the weight,
depvar as the dependent variable, and indepvars as the list of independent
variables. Let w denote the positive square root of wtvar; then WLS is
basically equivalent to an OLS regression of w * depvar on w * indepvars.
The R-squared, however, is calculated in a special manner, namely as

  R^2 = 1 - ESS / WTSS

where ESS is the error sum of squares (sum of squared residuals) from the
weighted regression and WTSS denotes the "weighted total sum of squares",
which equals the sum of squared residuals from a regression of the weighted
dependent variable on the weighted constant alone.

As a special case, if wtvar is a 0/1 dummy variable, WLS estimation is
equivalent to OLS on a sample that excludes all observations with value zero
for wtvar. Otherwise including weights of zero is considered an error, but
if you really want to mix zero weights with positive ones you can append the
--allow-zeros option.

For weighted least squares estimation applied to panel data and based on the
unit specific error variances please see the "panel" command with the
--unit-weights option.

Menu path:    /Model/Other linear models/Weighted Least Squares

# xcorrgm Statistics

Arguments:  series1 series2 [ order ] 
Options:    --plot=mode-or-filename (see below)
            --quiet (suppress plot)
Example:    xcorrgm x y 12

Prints and graphs the cross-correlogram for series1 and series2, which may
be specified by name or number. The values are the sample correlation
coefficients between the current value of series1 and successive leads and
lags of series2.

If an order value is specified the length of the cross-correlogram is
limited to at most that number of leads and lags, otherwise the length is
determined automatically, as a function of the frequency of the data and the
number of observations.

By default, a plot of the cross-correlogram is produced: a gnuplot graph in
interactive mode or an ASCII graphic in batch mode. This can be adjusted via
the --plot option. The acceptable parameters to this option are none (to
suppress the plot); ascii (to produce a text graphic even when in
interactive mode); display (to produce a gnuplot graph even when in batch
mode); or a file name. The effect of providing a file name is as described
for the --output option of the "gnuplot" command.

Menu path:    /View/Cross-correlogram
Other access: Main window pop-up menu (multiple selection)

# xtab Statistics

Arguments:  ylist [ ; xlist ] 
Options:    --row (display row percentages)
            --column (display column percentages)
            --zeros (display zero entries)
            --no-totals (suppress printing of marginal counts)
            --matrix=matname (use frequencies from named matrix)
            --quiet (suppress printed output)
            --tex[=filename] (output as LaTeX)
            --equal (see the LaTeX case below)
Examples:   xtab 1 2
            xtab 1 ; 2 3 4
            xtab --matrix=A
            xtab 1 2 --tex="xtab.tex"
            See also ooballot.inp

Given just the ylist argument, computes (and by default prints) a
contingency table or cross-tabulation for each combination of the variables
included in the list. If a second list xlist is given, each variable in
ylist is cross-tabulated by row against each variable in xlist (by column).
Variables in these lists can be referenced by name or by number. Note that
all the variables must have been marked as discrete. Alternatively, if the
--matrix option is given, the named matrix is treated as a precomputed set
of frequencies, to be displayed as a cross-tabulation (see also the "mxtab"
function). In this case the list argument(s) should be omitted.

By default the cell entries are given as frequency counts. The --row and
--column options (which are mutually exclusive) replace the counts with the
percentages for each row or column, respectively. By default, cells with a
zero count are left blank but the --zeros option has the effect of showing
zero counts explicitly, which may be useful for importing the table into
another program, such as a spreadsheet.

Pearson's chi-square test for independence is shown if the expected
frequency under independence is at least 1.0e-7 for all cells. A common rule
of thumb for the validity of this statistic is that at least 80 percent of
cells should have expected frequencies of 5 or greater; if this criterion is
not met a warning is printed.

If the contingency table is 2 by 2, Fisher's Exact Test for independence is
shown. Note that this test is based on the assumption that the row and
column totals are fixed, which may or may not be appropriate depending on
how the data were generated. The left p-value should be used when the
alternative to independence is negative association (values tend to cluster
in the lower left and upper right cells), the right p-value when the
alternative is positive association. The two-tailed p-value for this test is
calculated by method (b) in section 2.1 of Agresti (1992): it is the sum of
the probabilities of all possible tables with the given row and column
totals and a probability no greater than that of the observed table.

The bivariate case

In the case of a bivariate cross-tabulation (only one list is given, and it
has two members) certain results are stored. The contingency table may be
retrieved in matrix form via the "$result" accessor. In addition, if the
minimum expected value condition is met, the Pearson chi-square test and its
p-value may be retrieved via the "$test" and "$pvalue" accessors. If it's
these results that are of interest, the --quiet option can be used to
suppress the usual printout.

LaTeX output

If the --tex option is given the cross-tabulation is printed in the form of
a LaTeX tabular environment, either inline (from where it may be copied and
pasted) or, if the filename parameter is appended, to the specified file.
(If filename does not specify a full path the file is written in the
currently set "workdir".) No test statistic is computed. The additional
option --equal can be used to flag, by printing in boldface, the count or
percentage for cells in which the row and column variables have the same
numerical value. This option is ignored unless the --tex option is given,
and also when one or both of the cross-tabulated variables are
string-valued.