~ubuntu-branches/ubuntu/hoary/ess/hoary

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
\input texinfo   @c -*-texinfo-*-
@comment %**start of header
@setfilename ess.info
@settitle ESS --- Emacs Speaks Statistics
@comment %**end of header
@comment $Id: ess.texi,v 5.39 2002/07/31 21:57:13 rsparapa Exp $

@synindex pg vr

@titlepage
@title ESS --- Emacs Speaks Statistics 
@subtitle (Documentation $Revision: 5.39 $ $Date: 2002/07/31 21:57:13 $)
@author A.J. Rossini, R.M. Heiberger, K. Hornik, M. Maechler, and R.A. Sparapani.
@c @author (Formerly by: Doug Bates, Ed Kademan, Frank Ritter
@c @author                and David Smith)
@c @ifhtml
@c <P><HR></P>
@c @end ifhtml
@c 
@author Current Documentation by A.J. Rossini
@author Copyright @copyright{} 1996--2002 A.J. Rossini.
@c (@email{rossini@@biostat.washington.edu})
@c @author Department of Biostatistics
@c @author University of Washington, USA.
@author Original Documentation by David Smith
@author Copyright @copyright{} 1992--1995 David M. Smith
@c (@email{D.M.Smith@@lancaster.ac.uk})
@c @author Department of Mathematics and Statistics
@c @author Lancaster University, UK
@c @page
@c @vskip 0pt plus 1filll
@c @sp 2
@author Permission is granted to make and distribute verbatim copies of this
@author manual provided the copyright notice and this permission notice are
@author preserved on all copies.
@author Permission is granted to copy and distribute modified versions of this
@author manual under the conditions for verbatim copying, provided that the
@author entire resulting derived work is distributed under the terms of a
@author permission notice identical to this one.

@end titlepage

@ifinfo
INFO-DIR-SECTION Emacs
@majorheading ESS --- Emacs Speaks Statistics
@direntry
* ESS: (ess). Emacs Speaks Statistics (S/S+/R, SAS, BUGS, Stata, XLisp-Stat).
@end direntry
@node Top, Introduction, (dir), (dir)
@top ESS: Emacs Speaks Statistics

ESS version 
@include ../VERSION

        (Documentation $Revision: 5.39 $ $Date: 2002/07/31 21:57:13 $).

@display
by  A.J. Rossini, 
    R.M. Heiberger, 
    K. Hornik, 
    M. Maechler, 
and R.A. Sparapani 
@end display

@c (Formerly: Doug
@c Bates, Ed Kademan, Frank Ritter and David Smith).
@quotation
Emacs Speaks Statistics (ESS) provides an intelligent, consistent 
interface between the user and the software.  ESS interfaces with 
SAS, S-PLUS, R, BUGS and other statistical analysis packages under
the Unix, Microsoft Windows, and Apple Mac operating systems.  ESS
is itself a package within the emacs text editor and uses emacs
features to streamline the creation and use of statistical software.
ESS knows the syntax and grammar of statistical analysis packages
and provides consistent display and editing features based on that 
knowledge.  ESS assists in interactive and batch execution of 
statements written in these statistical analysis languages.
@end quotation

@end ifinfo

@menu
* Introduction::                Overview of features provided by this package
* Installation::                Installing ESS on your system
* Starting up::                 Starting the @b{ESS} process
* Help for the S family::       
* Help for SAS::                
* Entering commands::           Interacting with the process buffer
* Editing::                     How to create or edit @b{S} objects or functions
* Help::                        Reading help files in ESS
* Transcript Mode::             Manipulating saved transcript files
* Miscellaneous::               Other features of ESS
* Bugs Etc::                    
* Customization::               Customizing ESS
* Key Index::                   
* Command Index::               
* Concept Index::               
* Variable and command index::  
@c 
@c @detailmenu
@c  --- The Detailed Node Listing ---
@c 
@c Introduction to @b{ESS}
@c 
@c * Features::                    Why should I use ESS?
@c * New features::                
@c * Credits::                     Authors of and contributors to ESS
@c * Latest version::              Getting the latest version of ESS
@c * Manual::                      How to read this manual
@c 
@c Installing ESS on your system
@c * Unix installation::              Installing ESS on your Unix system
@c * Microsoft Windows installation:: Installing ESS on your MS Windows system
@c * Requirements::         emacs, Operating Systems and Statistical Packages 
@c * System dependent::               Other variables you may need to change
@c 
@c Starting the @b{ESS} process
@c 
@c * Multiple ESS processes::      
@c * ESS processes on Remote Computers::
@c * Customizing startup::         Changing the startup actions
@c 
@c Help for the S family
@c 
@c * ESS(S)--Editing files::
@c * iESS(S)--Inferior ESS processes::
@c * Handling and Reusing Transcripts::
@c * ESS-help--assistance with viewing help::
@c * Philosophies for using ESS(S)::
@c * Scenarios for use (possibilities--based on actual usage)::
@c * Customization Examples and Solutions to Problems::
@c 
@c Help for SAS
@c 
@c * ESS(SAS)--Design philosophy::
@c * ESS(SAS)--Editing files::
@c * iESS(SAS)--Interactive SAS processes::
@c * ESS(SAS)--Batch SAS processes::
@c * ESS(SAS)--Function keys for batch processing::
@c * ESS(SAS)--TAB key::
@c * ESS(SAS)--Usage scenarios::
@c * iESS(SAS)--Common problems::
@c * ESS(SAS)--MS Windows::
@c 
@c Interacting with the @b{ESS} process
@c 
@c * Command-line editing::        Entering commands and fixing mistakes
@c * Completion::                  Completion of object names
@c * Completion details::          Advanced completion concepts
@c * Transcript::                  Manipulating the transcript
@c * Command History::             Command History
@c * History expansion::           References to historical commands
@c * Hot keys::                    Hot keys for common commands
@c * Statistical Process running in ESS?::  
@c * Other::                       Other commands provided by inferior-ESS
@c 
@c Manipulating the transcript
@c 
@c * Last command::                Manipulating the output from the last command
@c * Process buffer motion::       Viewing more historic commands
@c * Transcript resubmit::         Re-submitting commands from the transcript
@c * Saving transcripts::          Keeping a record of your @b{S} session
@c 
@c Editing @b{S} functions
@c 
@c * Edit buffer::                 Edit objects in a specialized buffer
@c * Loading::                     Loading source files into the @b{ESS} process
@c * Error Checking::              Detecting errors in source files
@c * Evaluating code::             Sending code to the @b{ESS} process
@c * Indenting::                   Indenting and formatting @b{S} code
@c * Other edit buffer commands::  Commands for motion, completion and more
@c * Source Files::                Maintaining @b{S} source files
@c * Source Directories::          Names and locations of dump files
@c 
@c Manipulating saved transcript files
@c 
@c * Resubmit::                    Resubmitting commands from the transcript file
@c * Clean::                       Cleaning transcript files
@c 
@c Other features of ESS
@c 
@c * Highlighting::                Syntactic highlighting of buffers
@c * Graphics::                    Using graphics with ESS
@c * Object Completion::           
@c 
@c Using graphics with ESS
@c 
@c * printer::                     The printer() graphics driver
@c * X11::                         The X11() (and other X-windows based) driver
@c 
@c Bugs and Bug Reporting, Mailing Lists
@c 
@c * Bugs::                        
@c * Reporting Bugs::              
@c * Mailing Lists::               
@c 
@c Customizing ESS
@c 
@c * Variables::                   Variables for customization
@c * Hooks::                       Customizing ESS with hooks
@c * Keybindings::                 Changing the default ESS keybindings
@c 
@c Variables for customization
@c 
@c * Variables for starting ESS::  Variables for starting ESS
@c * Dump file variables::         Variables for dump files
@c * Indentation variables::       Variables controlling indentation
@c * Variables controlling interaction::  Variables controlling interaction
@c 					with the @b{ESS} process
@c @end detailmenu
@end menu

@comment node-name,  next,  previous,  up
@node Introduction, Installation, Top, Top
@chapter Introduction to @b{ESS}
@cindex introduction

The S family (@b{S}, Splus and R) and SAS statistical analysis packages
provide sophisticated statistical and graphical routines for manipulating 
data.   @b{E}macs @b{S}peaks @b{S}tatistics (ESS) is based on the merger 
of two pre-cursors, S-mode and SAS-mode, which provided support for the
S family and SAS respectively.  Later on, Stata-mode was also incorporated.

ESS provides a common, generic, and useful interface, through emacs, to 
many statistical packages.  It currently supports the S family, SAS, BUGS, 
Stata and XLisp-Stat with the level of support roughly in that order.

A bit of notation before we begin.  @emph{emacs} refers to both
@emph{GNU Emacs} by the Free Software Foundation, as well as
@emph{XEmacs} by the XEmacs Project.  The emacs major
mode @code{ESS[language]}, where @code{language} can take values such as 
@code{S}, @code{SAS}, or @code{XLS}.  The inferior process interface 
(the connection between emacs and the running process) referred to as inferior ESS
(@code{iESS}), is denoted in the modeline by @code{ESS[dialect]}, where
@code{dialect} can take values such as @code{S3}, @code{S4}, @code{S+3},
@code{S+4}, @code{S+5}, @code{S+6}, @code{R}, @code{XLS}, @code{VST}, @code{SAS}.

Currently, the documentation contains many references to @cite{`S'}
where actually any supported (statistics) language is meant, i.e., `S'
could also mean `XLisp-Stat' or `SAS'.

@cindex interactive use of S

@cindex using @b{S} interactively
For exclusively interactive users of S, ESS provides a number of
features to make life easier.  There is an easy to use command history
mechanism, including a quick prefix-search history.  To reduce typing,
command-line completion is provided for all @b{S} objects and ``hot
keys'' are provided for common @b{S} function calls.  Help files are
easily accessible, and a paging mechanism is provided to view them.
Finally, an incidental (but very useful) side-effect of ESS is that a
transcript of your session is kept for later saving or editing.

@cindex transcripts of @b{S} sessions
No special knowledge of Emacs is necessary when using @b{S}
interactively under ESS.

@cindex programming in @b{S}
For those that use @b{S} in the typical edit--test--revise cycle when
programming @b{S} functions, ESS provides for editing of @b{S} functions
in Emacs edit buffers.  Unlike the typical use of @b{S} where the editor
is restarted every time an object is edited, ESS uses the current Emacs
session for editing.  In practical terms, this means that you can edit
more than one function at once, and that the @b{ESS} process is still
available for use while editing.  Error checking is performed on
functions loaded back into S, and a mechanism to jump directly to the
error is provided.  ESS also provides for maintaining text versions of
your @b{S} functions in specified source directories.

@menu
* Features::                    Why should I use ESS?
* New features::                
* Credits::                     Authors of and contributors to ESS
* Latest version::              Getting the latest version of ESS
* Manual::                      How to read this manual
@end menu

@comment  node-name,  next,  previous,  up
@node Features, New features, Introduction, Introduction
@section Why should I use ESS?

S is a powerful system for manipulating and analyzing data, but its user
interface --- particularly on Unix platforms --- leaves something to be
desired.  ESS is a package which is designed to make @b{S} easier to
use.

ESS provides several features which make it easier to interact with the
@b{ESS} process (i.e. enter commands and view the output).  These
include:

@itemize @bullet
@item
@b{Command-line editing} for fixing mistakes in commands before they are
entered.  The @samp{-e} flag for S-plus provides something similar to
this, but here you have the full range of Emacs commands rather than a
limited subset.  However, other packages such as XLisp-Stat and S3 do not
necessarily have features like this built-in.
@xref{Command-line editing}.

@item
@b{Searchable command history} for recalling previously-submitted
commands.  This provides all the features of the @samp{Splus -e} history
mechanism, plus added features such as history searching.
@xref{Command History}.

@item
@b{Command-line completion} of both object and file names for quick
entry.  This is similar to @code{tcsh}'s facility for filenames; here it
also applies to object names and list components.
@xref{Completion}.

@item
@b{Hot-keys} for quick entry of commonly-used commands in `S' such as
@code{objects()} and @code{search()}.
@xref{Hot keys}.

@item
@b{Transcript recording} for a complete record of all the actions in an
S session.
@xref{Transcript}.

@item
@b{Interface to the help system}, with a specialized mode for viewing S
help files.
@xref{Help}.

@end itemize

If you commonly create or modify @b{S} functions, you will have found
the standard facilities for this (the @samp{fix()} function, for
example) severely limiting.  Using S's standard features, one can only
edit one function at a time, and you can't continue to use @b{S} while
editing.  ESS corrects these problems by introducing the following
features:

@itemize @bullet
@item
@b{Object editing}.  ESS allows you to edit more than one function
simultaneously in dedicated Emacs buffers.  The @b{ESS} process may
continue to be used while functions are being edited.
@xref{Edit buffer}.

@item
@b{A specialized editing mode} for @b{S} code, which provides syntactic
indentation and highlighting.
@xref{Indenting}.

@item
@b{Facilities for loading and error-checking source files}, including a
keystroke to jump straight to the position of an error in a source file.
@xref{Error Checking}.

@item
@b{Source code revision maintenance}, which allows you to keep historic
versions of @b{S} source files.
@xref{Source Files}.

@item
@b{Facilities for evaluating @b{S} code} such as portions of source
files, or line-by-line evaluation of files (useful for debugging).
@xref{Evaluating code}.
@end itemize

Finally, ESS provides features for re-submitting commands from saved
transcript files, including:

@itemize @bullet

@item
@b{Evaluation of previously entered commands}, stripping away
unnecessary prompts.
@xref{Transcript resubmit}.

@end itemize

@comment  node-name,  next,  previous,  up
@node New features, Credits, Features, Introduction
@section New features in ESS

@include newfeat.texi

@comment  node-name,  next,  previous,  up
@node Credits, Latest version, New features, Introduction
@section Authors of and contributors to ESS

@include credits.texi

@comment  node-name,  next,  previous,  up
@node Latest version, Manual, Credits, Introduction
@section Getting the latest version of ESS

@include getting.texi

@comment  node-name,  next,  previous,  up
@node Manual,  , Latest version, Introduction
@section How to read this manual

If you need to install ESS, read @ref{Installation} for details on what
needs to be done before proceeding to the next chapter.

@ref{Customization} provides details of user variables you can change to
customize ESS to your taste, but it is recommended that you defer this
section until you are more familiar with ESS.

Don't forget that this manual is not the only source of information
about ESS.  In particular, the mode-based online help (obtained by
pressing @kbd{C-h m} when in the process buffer, edit buffer or help
buffer) is quite useful.  However the best source of information is, as
always, experience --- try it out!

@comment  node-name,  next,  previous,  up
@node Installation, Starting up, Introduction, Top
@appendix Installing ESS on your system
@cindex installation

The following section details those steps necessary to get ESS running
on your system.

@menu
* Unix installation::              Installing ESS on your Unix system
* Microsoft Windows installation:: Installing ESS on your MS Windows system
* Requirements::         emacs, Operating Systems and Statistical Packages 
* System dependent::               Other variables you may need to change
@end menu

@include inst_tar.texi

@comment  node-name,  next,  previous,  up
@node System dependent,  , Installation, Installation
@appendixsec Other variables you may need to change

If you run the @b{S} program (from the shell) with a command other than
@samp{Splus} you will need to set the variable
@code{inferior-ess-program}
@vindex inferior-ess-program
to the name of the appropriate program by including a line such as
@cindex @b{S} program name
@cindex name of @b{S} program
@cindex command to run @b{S} program
@example
(setq inferior-ess-program "S+")
@end example
@noindent
in your @file{.emacs} file
@cindex @file{.emacs} file
@noindent
(substituting @samp{S+} for the name of your @b{S} program.)

If you need to call this program with any arguments, the variable you
@cindex arguments to @b{S} program
need to set is dependent on the value of @code{inferior-ess-program}; for
example if it is @code{"Splus"}, set the variable
@code{inferior-Splus-args}
@vindex inferior-Splus-args
to a string of arguments to the @code{Splus} program.  If
@code{inferior-ess-program} has some other value, substitute the
@code{Splus} part of @code{inferior-Splus-args} with the appropriate
program name.  There aren't many instances where you need to call @b{S}
with arguments, however: in particular do not call the @b{S} program
with the @samp{-e} command-line editor argument since ESS provides this
feature for you.

@cindex Splus
@vindex S-plus
If you are running Splus (the enhanced version of @b{S} from Statsci) you
may also need to set the variable @code{S-plus} to @code{t}.  If your
value of @code{inferior-ess-program} is @code{"S+"} or @code{Splus} this
will not be necessary, however; @code{S-plus} defaults to @code{t} in
this case.

Finally, if you use a non-standard prompt within S, you will need to set the
variable @code{inferior-ess-prompt}
@cindex prompts in S
@vindex inferior-ess-prompt
to a regular expression which will match both the primary prompt (@code{"> "}
@cindex primary prompt
by default) and the continuing prompt (default of @code{"+ "}.) The
@cindex continuing prompt
default value of this variable matches S's default prompts.  For example,
if you use (@code{"$ "}) as your primary prompt (you have
@w{@code{options(prompt="$ ")}} in your @code{.First} function), add the
@pindex options()
@cindex @code{.First} function
following line to your @file{.emacs}:
@example
(setq inferior-ess-prompt "^\\(\\+\\|[^\\$]*\\$\\) *")
@end example
@noindent
You will also need to set the variable @code{inferior-ess-primary-prompt}
@vindex inferior-ess-primary-prompt
to a regular expression which matches the primary prompt only.  Do not
anchor the regexp to the beginning of the line with @samp{^}.  Once
again, the default value matches S's default prompt; in the example
above the appropriate value would be @code{"[^\\$]*\\$ *"}.

Once these variables are set appropriately, ESS should work on any
system.

@comment  node-name,  next,  previous,  up
@node Starting up, Help for the S family, Installation, Top
@chapter Starting the @b{ESS} process
@cindex starting ESS
@cindex running S

To start an @b{S} session, simply type @kbd{M-x S RET}, i.e. press
@key{ESC}, then @key{x}, then capital @key{S} and then the @key{RETURN}
key.
@pindex S

@cindex @b{ESS} process directory
@cindex starting directory
@cindex working directory
@cindex directories

S will then (by default) ask the question
@example
S starting data directory?
@end example
@noindent
Enter the name of the directory you wish to start @b{S} from (that is,
the directory you would have @code{cd}'d to before starting @b{S} from
the shell).  This directory should have a @file{.Data} subdirectory.

You will then be popped into a buffer
@cindex @b{ESS} process buffer
@cindex process buffer
with name @samp{*S*} which will be used
for interacting with the @b{ESS} process, and you can start entering commands.

@menu
* Multiple ESS processes::      
* ESS processes on Remote Computers::
* Customizing startup::         Changing the startup actions
@end menu

@comment  node-name,  next,  previous,  up
@node Multiple ESS processes,  ESS processes on Remote Computers, Starting up, Starting up
@section Running more than one @b{ESS} process
@cindex Multiple @b{ESS} processes

ESS allows you to run more than one @b{ESS} process simultaneously in the
same session.  Each process has a name and a number; the initial process
@cindex process names
(process 1) is simply named (using S-PLUS as an example) @samp{S+3:1}.
@comment You may start a new process by passing a numeric argument to
@comment @kbd{M-x S}.  For example, typing @kbd{ESC 2 M-x S} starts up
@comment an @b{ESS} process with name @samp{S2}, in a buffer whose name
@comment is initially @samp{*S2*}.
The name of the process is shown in the mode line in square brackets
(for example, @samp{[S+3:2]}); this is useful if the process buffer is
renamed.  Without a prefix argument, @kbd{M-x S} starts a new @b{ESS}
process, using the first available process number.  With a prefix
argument (for R), @kbd{C-u M-x R} allows for the specification of
command line options for the size of memory allocated to the R process,
for example.

@pindex ess-request-a-process
You can switch to any active @b{ESS} process with the command @kbd{C-c
C-k} (@code{ess-request-a-process}).  Just enter the name of the process
you require; completion is provided over the names of all running S
processes.  This is a good command to consider binding to a global key.

@pindex ess-plain-first-buffername
For the predecessor to ESS (S-mode 4.8), the initial process was not
visibly numbered, i.e. S instead of S1 was used in the mode-line.  To
obtain this behavior, set the variable @code{ess-plain-first-buffername}
to @code{t}.  See @file{ess-site} for how to set this for all users.


@comment  node-name,  next,  previous,  up
@node ESS processes on Remote Computers, Customizing startup, Multiple ESS processes, Starting up
@section ESS processes on Remote Computers
@cindex Remote Computers
@vindex ess-remote
@vindex ess-elsewhere
@vindex S+elsewhere

ESS works with processes on remote computers as easily as with
processes on the local machine.  The recommended way to access a
statistical program on remote computer is to start it from a telnet or
ssh buffer and then connect ESS to that buffer.

@enumerate
@item Start a new telnet or ssh buffer and connect to the remote computer.

@item Start the ESS process on the remote machine, for example with one of
the commands @samp{Splus}, or @samp{R}, or @samp{sas -stdio}.

@item Enter the ESS command @samp{M-x ess-remote}.  You will be prompted for
a program name.  Enter @samp{sp6} or @samp{r} or @samp{sas} or another
valid name.  Your telnet process is now known to ESS.  All the usual
ESS commands (@samp{C-c C-n} and its relatives) now work with the S
language processes.  For SAS you need to use a different command
@samp{C-c i} (that is a regular @samp{i}, not a @samp{C-i}) to send
lines from your @file{myfile.sas} to the remote SAS process.
@samp{C-c i} sends lines over invisibly and lets SAS display them
formatted correctly as in a SAS log file.

@item Graphics (interactive) on the remote machine.  If you run X11
(@xref{X11}, X-windows)
on both the local and remote machines then you should be able to
display the graphs locally by setting the @samp{DISPLAY} environment
variable appropriately.  Windows users can download @samp{xfree86}
from cygwin.

@item Graphics (static) on the remote machine. 
If you don't run X-windows on the local machine, then you can write
graphics to a file on the remote machine, and display the file in
a graphics viewer on the local machine.  Most statistical software can
write one or more of postscript, GIF, or JPEG files.
Depending on the versions of emacs and the operating system that you
are running, emacs itself may display @samp{.gif} and @samp{.jpg}
files.  Otherwise, a graphics file viewer will be needed.
Ghostscript/ghostview may be downloaded to display @samp{.ps} and
@samp{.eps} files.  Viewers for GIF and JPEG are usually included with
operating systems.  @xref{ESS(SAS)--Function keys for batch processing},
for more information on using the F12 key for displaying graphics files
with SAS.
@end enumerate

Should you or a colleague inadvertently start a statistical process in
an ordinary @samp{*shell*} buffer, the @samp{ess-remote} command can
be used to convert it to an ESS buffer and allow you to use the ESS
commands with it.

We have two older commands, now deprecated, for accessing ESS processes
on remote computers.
@xref{S+elsewhere and ess-elsewhere}.


@comment  node-name,  next,  previous,  up
@node S+elsewhere and ess-elsewhere,  , ESS processes on Remote Computers, ESS processes on Remote Computers
@section S+elsewhere and ess-elsewhere

These commands are now deprecated.  We recommend @samp{ess-remote}.


We have two versions of the elsewhere function.

@samp{S+elsewhere} is specific for the S-Plus program.
The more general function @samp{ess-elsewhere} is not as stable.

@enumerate
@item Enter @samp{M-x S+elsewhere}.
You will be prompted for a starting directory.  I usually give it my
project directory on the local machine, say  @samp{~myname/myproject/}

Or enter @samp{M-x ess-elsewhere}.  You will be prompted for an ESS
program and for a starting directory.  I usually give it my project
directory on the local machine, say @samp{~myname/myproject/}

@item The @samp{*S+3*} buffer will appear with a prompt from the
local operating system (the unix prompt on a unix workstation or with
cygwin bash on a PC, or the msdos prompt on a PC without bash).  emacs
may freeze because the cursor is at the wrong place.  Unfreeze it with
@samp{C-g} then move the cursor to the end with @samp{M->}.
With @samp{S+elsewhere} the buffer name is based on the name of the ESS program.
@item Enter
@samp{telnet myname@@other.machine} (or @samp{ssh myname@@other.machine}).
You will be prompted for your password on the remote machine.
Use
@samp{M-x send-invisible}
before typing the password itself.

@item Before starting the ESS process, type @samp{stty -echo nl}
at the unix prompt.  The @samp{-echo} turns off the echo, the
@samp{nl} turns off the newline that you see as @samp{^M}.

@item You are now talking to the unix prompt on the other machine in the
@samp{*S+3*} buffer.  cd into the directory for the current project and start
the ESS process by entering
@samp{Splus} or @samp{R} or @samp{sas -stdio}
as appropriate.  If you can login remotely to your Windows 2000, then
you should be able to run @samp{Sqpe} on the Windows machine.  I haven't
tested this and noone has reported their tests to me.  You will not be
able to run the GUI through this text-only connection.

@item Once you get the S or R or SAS prompt, then you are completely connected.
All the @samp{C-c C-n} and related commands work correctly in sending
commands from @samp{myfile.s} or @samp{myfile.r} on the PC to the
@samp{*S+3*} buffer running the S or R or SAS program on the remote machine.

@item Graphics on the remote machine works fine.  If you run X-windows
graphics on the remote unix machine you should be able to display them
in @samp{xfree86} on your PC.  If you don't run X-windows, then you can write
graphics to the postscript device and copy it to your PC with dired
and display it with ghostscript.
@end enumerate


@comment  node-name,  next,  previous,  up
@node Customizing startup,  , ESS processes on Remote Computers, Starting up
@section Changing the startup actions

If you do not wish ESS to prompt for a starting directory when starting
a new process, set the variable @code{ess-ask-for-ess-directory} to
@vindex ess-ask-for-ess-directory
@code{nil}.  In this case, the value of the variable @code{ess-directory}
@vindex ess-directory
is used as the starting directory.  The default value for this variable
is your home directory.  If @code{ess-ask-for-ess-directory} has a
non-@code{nil} value (as it does by default) then the value of
@code{ess-directory} provides the default when prompting for the
starting directory.  Incidentally, @code{ess-directory} is an ideal
variable to set in @code{ess-pre-run-hook}.

If you like to keep a records of your @b{S} sessions, set the variable
@code{ess-ask-about-transfile} to @code{t}, and you will be asked for a
filename for the transcript before the @b{ESS} process starts.

@defvr {User Option} ess-ask-about-transfile
If non-@code{nil}, as for a file name in which to save the session
transcript.
@end defvr

@cindex transcript file
Enter the name of a file in which to save the transcript at the prompt.
If the file doesn't exist it will be created (and you should give it a
file name ending in @samp{.St}; if the file already exists the
transcript will be appended to the file.  (Note: if you don't set this
variable but you still want to save the transcript, you can still do it
later --- @pxref{Saving transcripts}.)

Once these questions are answered (if they are asked at all) the S
process itself is started by calling the program name specified in the
variable @code{inferior-ess-program}.
@vindex inferior-ess-program
If you need to pass any arguments to this program, they may be specified
in the variable @code{inferior-@var{S_program_name}-args} (e.g. if
@code{inferior-ess-program} is @code{"S+"} then the variable to set is
@code{inferior-S+-args}.
@cindex arguments to @b{S} program
It is not normally necessary to pass arguments to the @b{S} program; in
particular do not pass the @samp{-e} option to @code{Splus}, since ESS
provides its own command history mechanism.


@comment  node-name,  next,  previous,  up
@node Help for the S family, Help for SAS, Starting up, Top
@chapter Help for the S family
@menu
* ESS(S)--Editing files::
* iESS(S)--Inferior ESS processes::
* Handling and Reusing Transcripts::
* ESS-help--assistance with viewing help::
* Philosophies for using ESS(S)::
* Scenarios for use (possibilities--based on actual usage)::
* Customization Examples and Solutions to Problems::
@end menu
@include help-s.texi

@comment  node-name,  next,  previous,  up
@node Help for SAS, Entering commands, Help for the S family, Top
@chapter Help for SAS

@menu
* ESS(SAS)--Design philosophy::
* ESS(SAS)--Editing files::
* iESS(SAS)--Interactive SAS processes::
* ESS(SAS)--Batch SAS processes::
* ESS(SAS)--Function keys for batch processing::
* ESS(SAS)--TAB key::
* ESS(SAS)--Usage scenarios::
* iESS(SAS)--Common problems::
* ESS(SAS)--MS Windows::
@end menu
@include help-sas.texi


@comment  node-name,  next,  previous,  up
@node Entering commands, Editing, Help for SAS, Top
@chapter Interacting with the @b{ESS} process
@cindex entering commands
@cindex commands
@cindex sending input

The primary function of the ESS package is to provide an easy-to-use
front end to the @b{S} interpreter.  This is achieved by running the S
process from within an Emacs buffer, so that the Emacs editing commands
are available to correct mistakes in commands, etc.  The features of
Inferior @b{S} mode are similar to those provided by the standard Emacs
shell mode (@pxref{Shell Mode,,, emacs, The Gnu Emacs Reference
Manual}).  Command-line completion of @b{S} objects and a number of `hot
keys' for commonly-used @b{S} commands are also provided for ease of
typing.

@menu
* Command-line editing::        Entering commands and fixing mistakes
* Completion::                  Completion of object names
* Completion details::          Advanced completion concepts
* Transcript::                  Manipulating the transcript
* Command History::             Command History
* History expansion::           References to historical commands
* Hot keys::                    Hot keys for common commands
* Statistical Process running in ESS?::  
* Other::                       Other commands provided by inferior-ESS
@end menu

@comment  node-name,  next,  previous,  up
@node Command-line editing, Completion, Entering commands, Entering commands
@section Entering commands and fixing mistakes
@cindex command-line editing

Sending a command to the @b{ESS} process is as simple as typing it in
and pressing the @key{RETURN} key:

@itemize @bullet
@item
@kbd{RET} (@code{inferior-ess-send-input}) @*
@pindex inferior-ess-send-input
Send the command on the current line to the @b{ESS} process.
@end itemize

If you make a typing error before pressing @kbd{RET} all the usual Emacs
editing commands are available to correct it (@pxref{Basic, Basic, Basic
editing commands, emacs, The GNU Emacs Reference Manual}).  Once the
command has been corrected you can press @key{RETURN} (even if the
cursor is not at the end of the line) to send the corrected command to
the @b{ESS} process.

ESS provides some other commands which are useful for fixing mistakes:

@itemize @bullet
@item
@kbd{C-c C-w} (@code{backward-kill-word}) @*
@pindex backward-kill-word
Deletes the previous word (such as an object name) on the command line.

@item
@kbd{C-c C-u} (@code{comint-kill-input}) @*
@pindex comint-kill-input
Deletes everything from the prompt to point.  Use this to abandon a
command you have not yet sent to the @b{ESS} process.

@item
@kbd{C-c C-a} (@code{comint-bol}) @*
@pindex comint-bol
Move to the beginning of the line, and then skip forwards past the
prompt, if any.
@end itemize

@xref{Shell Mode,,, emacs, The Gnu Emacs Reference Manual}, for other
commands relevant to entering input.

@comment  node-name,  next,  previous,  up
@node  Completion, Completion details, Command-line editing, Entering commands
@section Completion of object names
@cindex completion of object names
@cindex command-line completion

In the process buffer, the @key{TAB} key is for completion, similar to
that provided by Shell Mode for filenames.  In Inferior @b{S} mode,
pressing the @key{TAB} key when the cursor is following the first few
characters of an object name @emph{completes} the object name; if the
cursor is following a file name @kbd{TAB} completes the file name.

@itemize @bullet
@item
@kbd{TAB} (@code{comint-dynamic-complete}) @*
@pindex comint-dynamic-complete
Complete the @b{S} object name or filename before point.
@end itemize

When the cursor is just after a partially-completed object name,
pressing @key{TAB} provides completion in a similar fashion to
@code{tcsh}
@cindex tcsh
except that completion is performed over all known @b{S} object names
instead of file names.  ESS maintains a list of all objects known to S
at any given time, which basically consists of all objects (functions
and datasets) in every attached directory listed by the @code{search()}
command
@pindex search()
along with the component objects of attached data frames
@cindex data frames
(if your version of @b{S} supports them).

For example, consider the three functions (available in Splus version
3.0) called @code{binomplot()}, @code{binom.test()} and
@code{binomial()}.  Typing @kbd{bin TAB} after the @b{S} prompt will
insert the characters @samp{om}, completing the longest prefix
(@samp{binom}) which distinguishes these three commands.  Pressing
@kbd{TAB} once more provides a list of the three commands which have
this prefix, allowing you to add more characters (say, @samp{.}) which
specify the function you desire.  After entering more characters
pressing @kbd{TAB} yet again will complete the object name up to
uniqueness, etc.  If you just wish to see what completions exist without
adding any extra characters, type @kbd{M-?}.

@itemize @bullet
@item
@kbd{M-?} (@code{ess-list-object-name-completions}) @*
@pindex ess-list-object-name-completions
List all possible completions of the object name at point.
@end itemize

ESS also provides completion over the components of named lists accessed
using the @samp{$} notation, to any level of nested lists.  This feature
is particularly useful for checking what components of a list object
exist while partway through entering a command: simply type the object
name and @samp{$} and press @kbd{TAB} to see the names of existing list
components for that object.
@cindex lists, completion on
@cindex completion on lists

@cindex completion on file names
Completion is also provided over file names, which is particularly
useful when using @b{S} functions such as @code{get()} or @code{scan()}
which require fully expanded file names.  Whenever the cursor is within
an @b{S} string, pressing @kbd{TAB} completes the file name before
point, and also expands any @samp{~} or environment variable references.

If the cursor is not in a string and does not follow a (partial) object
name, the @key{TAB} key has a third use: it expands history references.
@xref{History expansion}.

@comment  node-name,  next,  previous,  up
@node Completion details, Transcript, Completion, Entering commands
@section Completion details

ESS automatically keeps track of any objects added or deleted to the
system (such as new objects created, or directories added to the search
list) to make completion as accurate as possible.  Whenever ESS notices
that search list has changed
@vindex ess-change-sp-regex
@footnote{The variable @code{ess-change-sp-regex} is a regular
expression matching commands which change the search list.  You will
need to modify this variable if you have defined custom commands (other
than @code{attach}, @code{detach}, @code{collection} or @code{library})
which modify the search list.}  when you attach a directory or data
frame, the objects associated with it immediately become available for a
completion; when it is detached completion is no longer available on
those objects.

To maintain a list of accessible objects for completion, ESS needs to
determine which objects are contained in each directory or data frame on
the search list.  This is done at the start of each @b{S} session, by
running the @code{objects()} command on every element of the search
list.  On some systems, however, this can be rather slow; it's doubly
frustrating when you consider that most of the directories on the search
list are the standard @b{S} libraries, which never change anyway!  When
ESS was installed, a database of the standard object names should have
been created which should speed up this process at the start of an S
session; if it has not been created you will get a warning like
`S-namedb.el does not exist'.  @xref{Installation}, for information on
how to create this database.

Efficiency in completion is gained by maintaining a cache of objects
currently known to S; when a new object becomes available or is deleted,
only one component of the cache corresponding to the associated
directory needs to be refreshed.  If ESS ever becomes confused about
what objects are available for completion (such as when if refuses to
complete an object you @strong{know} is there), the command @kbd{M-x
ess-resynch}
@pindex ess-resynch
forces the @emph{entire} cache to be refreshed, which should fix the
problem.

@comment  node-name,  next,  previous,  up
@node Transcript, Command History, Completion details, Entering commands
@section Manipulating the transcript

Most of the time, the cursor spends most of its time at the bottom of
the @b{ESS} process buffer, entering commands.  However all the input
and output from the current (and previous) @b{ESS} sessions is stored in
the process buffer (we call this the transcript) and often we want to
@cindex transcript
move back up through the buffer, to look at the output from previous
commands for example.

Within the process buffer, a paragraph
@cindex paragraphs in the process buffer
is defined as the prompt, the command after the prompt, and the output
from the command.  Thus @kbd{M-@{} and @kbd{M-@}} move you backwards and
forwards, respectively, through commands in the transcript.  A
particularly useful command is @kbd{M-h} (@code{mark-paragraph}) which
will allow you to mark a command and its entire output (for deletion,
perhaps).  For more information about paragraph commands,
@pxref{Paragraphs, Paragraphs, Paragraphs, emacs, The GNU Emacs
Reference Manual}.

If an ESS process finishes and you restart it in the same process
buffer, the output from the new ESS process appears after the output
from the first ESS process separated by a form-feed (@samp{^L})
character.  Thus pages in the ESS
@cindex pages in the process buffer
process buffer correspond to ESS sessions.  Thus, for example, you may
use @kbd{C-x [} and @kbd{C-x ]} to move backward and forwards through
ESS sessions in a single ESS process buffer.  For more information about
page commands, @pxref{Pages, Pages, Pages, emacs, The GNU Emacs
Reference Manual}.

@menu
* Last command::                Manipulating the output from the last command
* Process buffer motion::       Viewing more historic commands
* Transcript resubmit::         Re-submitting commands from the transcript
* Saving transcripts::          Keeping a record of your @b{S} session
@end menu

@comment  node-name,  next,  previous,  up
@node Last command, Process buffer motion, Transcript, Transcript
@subsection Manipulating the output from the last command

Viewing the output of the command you have just entered is a common
occurrence and ESS provides a number of facilities for doing this.
@c Within the ESS process buffer, the variable @code{scroll-step}
@c @vindex scroll-step
@c is set to 4 (you can redefine this using @code{inferior-ess-mode-hook}
@c @vindex inferior-ess-hook
@c if you wish - @pxref{Hooks},) so that the cursor is usually near the
@c bottom of the window.
Whenever a command produces a longish output, it is possible that the
window will scroll, leaving the next prompt near the middle of the
window.  The first part of the command output may have scrolled off the
top of the window, even though the entire output would fit in the window
if the prompt were near the bottom of the window.  If this happens, you
can use the command

@itemize @bullet
@item
@kbd{C-c C-e} (@code{comint-show-maximum-output}) @*
@pindex comint-show-maximum-output
Move to the end of the buffer, and place cursor on bottom line of
window.
@end itemize

@noindent
to make more of the last output visible.  (To make this happen
automatically for all inputs, set the variable
@code{comint-scroll-to-bottom-on-input} to @code{t}; for information on
this and other options for handling process input and output
@pxref{Shell Options,,Shell Mode Options, emacs, The GNU Emacs Reference
Manual}.)

If the first part of the output is still obscured, use
@cindex reading long command outputs
@itemize @bullet
@item
@kbd{C-c C-r} (@code{comint-show-output}) @*
@pindex comint-show-output
Moves cursor to the previous command line and and places it at the top
of the window.
@end itemize

@noindent
to view it.  Finally, if you want to discard the last command output
altogether, use

@itemize @bullet
@item
@kbd{C-c C-o} (@code{comint-kill-output}) @*
@pindex comint-kill-output
@cindex deleting output
Deletes everything from the last command to the current prompt.
@end itemize

@noindent
to delete it.  Use this command judiciously to keep your transcript to a
more manageable size.

@comment  node-name,  next,  previous,  up
@node Process buffer motion, Transcript resubmit, Last command, Transcript
@subsection Viewing more historic commands

If you want to view the output from more historic commands than the
previous command, commands are also provided to move backwards and
forwards through previously entered commands in the process buffer:

@itemize @bullet
@item
@kbd{C-c C-p} (@code{comint-previous-input}) @*
@pindex comint-previous-input
Moves point to the preceding command in the process buffer.

@item
@kbd{C-c C-n} (@code{comint-next-input}) @*
@pindex comint-next-input
Moves point to the next command in the process buffer.
@end itemize

@noindent
Note that these two commands are analogous to @kbd{C-p} and @kbd{C-n}
but apply to command lines rather than text lines.  And just like
@kbd{C-p} and @kbd{C-n}, passing a prefix argument to these commands
means to move to the @var{ARG}'th next (or previous) command.  (These
commands are also discussed in @ref{Shell History Copying,,Shell History
Copying,emacs, The GNU Emacs Reference Manual}.)

There are also two similar commands (not bound to any keys by default)
which move to preceding or succeeding commands, but which first prompt
for a regular expression (@pxref{Regexps,,Syntax of Regular
Expression,emacs, The GNU Emacs Reference Manual}), and then moves to
the next (previous) command matching the pattern.

@deffn Command comint-backward-matching-input regexp arg
@deffnx Command comint-forward-matching-input regexp arg
Search backward (forward) through the transcript buffer for the
@var{arg}'th previous (next) command matching @var{regexp}.  @var{arg}
is the prefix argument; @var{regexp} is prompted for in the minibuffer.
@end deffn

@comment  node-name,  next,  previous,  up
@node Transcript resubmit, Saving transcripts, Process buffer motion, Transcript
@subsection Re-submitting commands from the transcript

When moving through the transcript, you may wish to re-execute some of
the commands you find there.  ESS provides three commands to do this;
these commands may be used whenever the cursor is within a command line
in the transcript (if the cursor is within some command @emph{output},
an error is signaled).  Note all three commands involve the @key{RETURN}
key.

@itemize @bullet
@item
@kbd{RET} (@code{inferior-ess-send-input}) @*
@pindex inferior-ess-send-input
Copy the command under the cursor to the current command line, and
execute it.

@item
@kbd{C-c RET} (@code{comint-copy-old-input}) @*
@pindex comint-copy-old-input
Copy the command under the cursor to the current command line, but don't
execute it.  Leaves the cursor on the command line so that the copied
command may be edited.

@item
@kbd{M-RET} (@code{ess-transcript-send-command-and-move}) @*
@pindex ess-transcript-send-command-and-move
Copy the command under the cursor to the current command line, and
execute it.  Moves the cursor to the following command.
@end itemize

When the cursor is not after the current prompt, the @key{RETURN} key
has a slightly different behavior than usual.  Pressing @kbd{RET} on any
line containing a command that you entered (i.e. a line beginning with a
prompt) sends that command to the @b{ESS} process once again.  If you
wish to edit the command before executing it, use @kbd{C-c RET} instead;
it copies the command to the current prompt but does not execute it,
allowing you to edit it before submitting it.

These two commands leave the cursor at the new command line, allowing
you to continue with interactive use of S.  If you wish to resubmit a
series of commands from the transcript, consider using @kbd{M-RET}
instead, which leaves the cursor at the command line following the one
you re-submitted.  Thus by using @kbd{M-RET} repeatedly, you can
re-submit a whole series of commands.

These commands work even if if the current line is a continuation line
(i.e. the prompt is @samp{+} instead of @samp{>}) --- in this case all
the lines that form the multi-line command are concatenated together and
the resulting command is sent to the @b{ESS} process (currently this is
the only way to resubmit a multi-line command to the @b{ESS} process in
one go).  If the current line does
@cindex multi-line commands, resubmitting
not begin with a prompt, an error is signaled.  This feature, coupled
with the command-based motion commands described above, could be used as
a primitive history mechanism.  ESS provides a more sophisticated
mechanism, however, which is described in @ref{Command History}.

@comment  node-name,  next,  previous,  up
@node Saving transcripts,  , Transcript resubmit, Transcript
@subsection Keeping a record of your @b{S} session

To keep a record of your @b{S} session in a disk file, use the Emacs
command @kbd{C-x C-w} (@code{write-file}) to attach a file to the
@b{ESS} process buffer.  The name of the process buffer will (probably)
change to the name of the file, but this is not a problem.  You can
still use @b{S} as usual; just remember to save the file before you quit
Emacs with @kbd{C-x C-s}.  You can make ESS prompt you for a filename in
which to save the transcript every time you start @b{S} by setting the
variable
@vindex ess-ask-about-transfile
@code{ess-ask-about-transfile} to @code{t}; see @ref{Customizing startup}.
@cindex transcript file names
We recommend you save your transcripts with filenames that end in
@samp{.St}.  There is a special mode (ESS transcript mode ---
@pxref{Transcript Mode}) for editing transcript files which is
automatically selected for files with this suffix.

@cindex editing transcripts
S transcripts can get very large, so some judicious editing is
appropriate if you are saving it in a file.  Use @kbd{C-c C-o} whenever
a command produces excessively long output (printing large arrays, for
example).  Delete erroneous commands (and the resulting error messages
or other output) by moving to the command (or its output) and typing
@kbd{M-h C-w}.  Also, remember that @kbd{C-c C-e} (and other hot keys)
may be used for commands whose output you do not wish to appear in the
transcript.  These suggestions are appropriate even if you are not
saving your transcript to disk, since the larger the transcript, the
more memory your Emacs process will use on the host machine.

Finally, if it is your intention to produce @b{S} source code (suitable
for using with @code{source()} or inclusion in an @b{S} function) from a
transcript, then the command @kbd{M-x ess-clean-region} may be of use.
@pindex ess-clean-region
This command works in any Emacs buffer, and removes all prompts and
command output from an ESS transcript within the current region, leaving
only the commands.  Don't forget to remove any erroneous commands first!

@comment  node-name,  next,  previous,  up
@node Command History, History expansion, Transcript, Entering commands
@section Command History
@cindex command history
@cindex editing commands
@cindex re-executing commands

ESS provides easy-to-use facilities for re-executing or editing previous
commands.  An input history of the last few commands is maintained (by
default the last 50 commands are stored, although this can be changed by
setting the variable @code{comint-input-ring-size} in
@vindex comint-input-ring-size
@code{inferior-ess-mode-hook}.) The simplest history commands simply
select the next and previous commands in the input history:

@itemize @bullet
@item
@kbd{M-p} (@code{comint-previous-input}) @*
@pindex comint-previous-input
Select the previous command in the input history.

@item
@kbd{M-n}  (@code{comint-next-input}) @*
@pindex comint-next-input
Select the next command in the input history.
@end itemize

@noindent
For example, pressing @kbd{M-p} once will re-enter the last command into
the process buffer after the prompt but does not send it to the @b{ESS}
process, thus allowing editing or correction of the command before the
@b{ESS} process sees it.  Once corrections have been made, press
@kbd{RET} to send the edited command to the @b{ESS} process.

If you want to select a particular command from the history by matching
it against a regular expression (@pxref{Regexps,,Syntax of Regular
Expression,emacs, The GNU Emacs Reference Manual}), to search for a
particular variable name for example, these commands are also available:

@itemize @bullet
@item
@kbd{M-r} (@code{comint-previous-matching-input}) @*
@pindex comint-previous-matching-input
Prompt for a regular expression, and search backwards through the input
history for a command matching the expression.

@item
@kbd{M-s} (@code{comint-next-matching-input}) @*
@pindex comint-next-matching-input
Prompt for a regular expression, and search backwards through the input
history for a command matching the expression.
@end itemize

@noindent
A common type of search is to find the last command that began with a
particular sequence of characters; the following two commands provide an
easy way to do this:

@itemize @bullet
@item
@kbd{A-M-r} (@code{comint-previous-matching-input-from-input}) @*
@pindex comint-previous-matching-input-from-input
Select the previous command in the history which matches the string
typed so far.

@item
@kbd{A-M-s} (@code{comint-next-matching-input-from-input}) @*
@pindex comint-next-matching-input-from-input
Select the next command in the history which matches the string typed so
far.
@end itemize

@noindent
Instead of prompting for a regular expression to match against, as they
instead select commands starting with those characters already entered.
For instance, if you wanted to re-execute the last @code{attach()}
command, you may only need to type @kbd{att} and then @kbd{A-M-r} and
@kbd{RET}.  (Note: you may not have an @key{ALT} key on your keyboard,
in which case it may be a good idea to bind these commands to some other
keys.)

@xref{Shell Ring,,Shell History Ring,emacs, The GNU Emacs Reference
Manual}, for a more detailed discussion of the history mechanism.

@comment  node-name,  next,  previous,  up
@node History expansion, Hot keys, Command History, Entering commands
@section References to historical commands

Instead of searching through the command history using the command
described in the previous section, you can alternatively refer to a
historical command directly using a notation very similar to that used
in @code{csh}.  History references are introduced by a @samp{!} or
@samp{^} character and have meanings as follows:

@table @samp
@item !!
The immediately previous command

@item !-@var{N}
The @var{N}th previous command

@item !text
The last command beginning with the string @samp{text}

@item !?text
The last command containing the string @samp{text}
@end table

In addition, you may follow the reference with a @dfn{word designator}
to select particular @dfn{words} of the input.  A word is defined as a
sequence of characters separated by whitespace.  (You can modify this
definition by setting the value of @code{comint-delimiter-argument-list}
to a list of characters that are allowed to separate words and
@vindex comint-delimiter-argument-list
themselves form words.)  Words are numbered beginning with zero.  The
word designator usually begins with a @samp{:} (colon) character;
however it may be omitted if the word reference begins with a @samp{^},
@samp{$}, @samp{*} or @samp{-}.  If the word is to be selected from the
previous command, the second @samp{!}  character can be omitted from the
event specification.  For instance, @samp{!!:1} and @samp{!:1} both
refer to the first word of the previous command, while @samp{!!$} and
@samp{!$} both refer to the last word in the previous command.  The
format of word designators is as follows:

@table @samp
@item 0
The zeroth word (i.e. the first one on the command line)

@item @var{n}
The @var{n}th word, where @var{n} is a number

@item ^
The first word (i.e. the second one on the command line)

@item $
The last word

@item @var{x}-@var{y}
A range of words; @samp{-@var{y}} abbreviates @samp{0-@var{y}}

@item *
All the words except the zeroth word, or nothing if the command had just
one word (the zeroth)

@item @var{x}*
Abbreviates @var{x}-$

@item @var{x}-
Like @samp{@var{x}*}, but omitting the last word
@end table

In addition, you may surround the entire reference except for the first
@samp{!} by braces to allow it to be followed by other (non-whitespace)
characters (which will be appended to the expanded reference).

Finally, ESS also provides quick substitution; a reference like
@samp{^old^new^} means ``the last command, but with the first occurrence
of the string @samp{old} replaced with the string @samp{new}'' (the last
@samp{^} is optional).  Similarly, @samp{^old^} means ``the last
command, with the first occurrence of the string @samp{old} deleted''
(again, the last @samp{^} is optional).

To convert a history reference as described above to an input suitable
for S, you need to @dfn{expand} the history reference, using the
@key{TAB} key.  For this to work, the cursor must be preceded by a space
(otherwise it would try to complete an object name) and not be within a
string (otherwise it would try to complete a filename).  So to expand
the history reference, type @kbd{SPC TAB}.  This will convert the
history reference into an @b{S} command from the history, which you can
then edit or press @key{RET} to execute.

For example, to execute the last command that referenced the variable
@code{data}, type @kbd{!?data SPC TAB RET}.

@comment  node-name,  next,  previous,  up
@node Hot keys, Statistical Process running in ESS?, History expansion, Entering commands
@section Hot keys for common commands

ESS provides a number of commands for executing the commonly used
functions.  These commands below are basically information-gaining
commands (such as @code{objects()} or @code{search()}) which tend to
clutter up your transcript and for this reason some of the hot keys
display their output in a temporary buffer instead of the process buffer
by default.  This behavior is controlled by the variable
@code{ess-execute-in-process-buffer} which, if
@vindex ess-execute-in-process-buffer
non-@code{nil}, means that these commands will produce their output in
the process buffer instead.  In any case, passing a prefix argument to
the commands (with @kbd{C-u}) will reverse the meaning of
@code{ess-execute-in-process-buffer} for that command, i.e. the output
will be displayed in the process buffer if it usually goes to a
temporary buffer, and vice-versa.  These are the hot keys that behave in
this way:

@itemize @bullet
@item
@kbd{C-c C-x} (@code{ess-execute-objects}) @*
@pindex ess-execute-objects
Sends the @code{objects()}
@pindex objects()
command to the @b{ESS} process.  A prefix argument specifies the
position on the search list (use a negative argument to toggle
@code{es-execute-in-process-buffer} as well).  A quick way to see what
objects are in your working directory.
@cindex objects
@pindex objects()

@item
@kbd{C-c C-s} (@code{ess-execute-search}) @*
@pindex ess-execute-search
Sends the @code{search()}
@pindex search()
command to the ESS process.
@cindex search list
@pindex search()

@item
@kbd{C-c C-e} (@code{ess-execute}) @*
@pindex ess-execute
Prompt for an ESS expression, and evaluate it.
@end itemize

@code{ess-execute} may seem pointless when you could just type the
command in anyway, but it proves useful for `spot' calculations which
would otherwise clutter your transcript, or for evaluating an expression
while partway through entering a command.  You can also use this command
to generate new hot keys using the Emacs keyboard macro facilities;
@pxref{Keyboard Macros, Keyboard Macros, Keyboard Macros, emacs, The GNU
Emacs Reference Manual}.
@cindex hot keys
@cindex keyboard short cuts

The following hot keys do not use @code{ess-execute-in-process-buffer}
to decide where to display the output --- they either always display in
the process buffer or in a separate buffer, as indicated:

@itemize @bullet
@item
@kbd{C-c C-a} (@code{ess-execute-attach}) @*
@pindex ess-execute-attach
Prompts for a directory to attach to the ESS process with the
@code{attach()} command.
@pindex attach()
If a numeric prefix argument is given it is used as the position on the
search list to attach the directory; otherwise the @b{S} default of 2 is
used.  The @code{attach()} command actually executed appears in the
process buffer.

@item
@kbd{C-c C-l} (@code{ess-load-file}) @*
@pindex ess-load-file
Prompts for a file to load into the @b{ESS} process using
@code{source()}.  If there is an error during loading, you can jump to
the error in the file with @kbd{C-x `} (@code{ess-parse-errors}).
@pindex ess-parse-errors
@xref{Error Checking}, for more details.

@item
@kbd{C-c C-v} (@code{ess-display-help-on-object}) @* Pops up a help
buffer for an @b{S} object or function.  See @ref{Help} for more
details.

@item
@kbd{C-c C-q} (@code{ess-quit}) @*
@cindex quitting from ESS
@cindex killing the @b{ESS} process
Sends the @code{q()}
@pindex q()
command to the @b{ESS} process (or @code{(exit)}
@pindex (exit)
to the @b{XLS} process), and cleans up any temporary buffers (such as
help buffers or edit buffers) you may have created along the way.  Use
this command when you have finished your @b{S} session instead of simply
typing @code{q()} yourself, otherwise you will need to issue the command
@kbd{M-x ess-cleanup}
@pindex ess-cleanup
@cindex cleaning up
@cindex temporary buffers, killing
@cindex killing temporary buffers
command explicitly to make sure that all the files that need to be saved
have been saved, and that all the temporary buffers have been killed.
@end itemize

@comment  node-name,  next,  previous,  up
@node Statistical Process running in ESS?, Other, Hot keys, Entering commands
@section Is the Statistical Process running under ESS?

@cindex STERM
@pindex STERM
For the S languages (S, S-Plus, R) ESS sets an option in the current
process that programs in the language can check to determine the
environment in which they are currently running.

ESS sets
@code{options(STERM="iESS")} for S language processes running in an
inferior @code{iESS[S]} or @code{iESS[R]} buffer.

ESS sets
@code{options(STERM="ddeESS")} for independent S-Plus for Windows
processes running in the GUI and communicating with ESS via
the DDE (Microsoft Dynamic Data Exchange) protocol through a
@code{ddeESS[S]} buffer.

Other values of @code{options()$STERM} that we recommend are:

@itemize @bullet
@item @code{length}:     Fixed length xterm or telnet window.
@item @code{scrollable}: Unlimited length xterm or telnet window.
@item @code{server}:     S-Plus Stat Server.
@item @code{BATCH}:      BATCH.
@item @code{Rgui}:       R GUI.
@item @code{Commands}:   S-Plus GUI without DDE interface to ESS.
@end itemize

Additional values may be recommended in the future as new interaction
protocols are created.  Unlike the values @code{iESS} and @code{ddeESS},
ESS can't set these other values since the S language program is not
under the control of ESS.


@comment  node-name,  next,  previous,  up
@node Other,  , Statistical Process running in ESS?, Entering commands
@section Other commands provided by inferior-ESS

The following commands are also provided in the process buffer:

@itemize @bullet
@item
@kbd{C-c C-c} (@code{comint-interrupt-subjob}) @*
@pindex comint-interrupt-subjob
Sends a Control-C signal to the @b{ESS} process.  This has the effect of
@cindex aborting @b{S} commands
@cindex interrupting @b{S} commands
aborting the current command.

@item
@kbd{C-c C-z} (@code{ess-abort}) @*
@pindex ess-abort
@pindex comint-stop-subjob
Sends a STOP signal to the @b{ESS} process, killing it immediately.
It's not a good idea to use this, in general: Neither @code{q()} nor
@code{.Last} will be executed and device drivers will not finish
cleanly.  This command is provided as a safety to
@code{comint-stop-subjob}, which is usually bound to @kbd{C-c C-z}.  If
you want to quit from S, use @kbd{C-c C-q} (@code{ess-quit}) instead.
@pindex ess-quit
@cindex aborting the @b{ESS} process

@item
@kbd{C-c C-d} (@code{ess-dump-object-into-edit-buffer}) @*
@pindex ess-dump-object-into-edit-buffer
Prompts for an object to be edited in an edit buffer.  @xref{Editing}.
@end itemize

Other commands available is Inferior @b{S} mode are discussed in
@ref{Shell Mode,,, emacs, The Gnu Emacs Reference Manual}.

@comment  node-name,  next,  previous,  up
@node Editing, Help, Entering commands, Top
@chapter Editing @b{S} functions

@cindex editing functions
ESS provides facilities for editing @b{S} objects within your Emacs
session.  Most editing is performed on @b{S} functions, although in
theory you may edit datasets as well.  Edit buffers are always
associated with files, although you may choose to make these files
temporary if you wish.  Alternatively, you may make use of a simple yet
powerful mechanism for maintaining backups of text representations of
@b{S} functions.  Error-checking is performed when @b{S} code is loaded
into the @b{ESS} process.

@menu
* Edit buffer::                 Edit objects in a specialized buffer
* Loading::                     Loading source files into the @b{ESS} process
* Error Checking::              Detecting errors in source files
* Evaluating code::             Sending code to the @b{ESS} process
* Indenting::                   Indenting and formatting @b{S} code
* Other edit buffer commands::  Commands for motion, completion and more
* Source Files::                Maintaining @b{S} source files
* Source Directories::          Names and locations of dump files
@end menu

@comment  node-name,  next,  previous,  up
@node Edit buffer, Loading, Editing, Editing
@section Creating or modifying @b{S} objects
@cindex edit buffer

To edit an @b{S} object, type

@itemize @bullet
@item
@kbd{C-c C-d} (@code{ess-dump-object-into-edit-buffer}) @*
@pindex ess-dump-object-into-edit-buffer
Edit an @b{S} object in its own edit buffer.
@end itemize

from within the @b{ESS} process buffer (@code{*S*}).  You will then be
prompted for an object to edit: you may either type in the name of an
existing object (for which completion is available using the @kbd{TAB}
key),
@cindex completion, when prompted for object names
or you may enter the name of a new object.
@cindex creating new objects
@cindex new objects, creating
A buffer will be created containing the text representation of the
requested object or, if you entered the name of a non-existent object at
the prompt and the variable @code{ess-insert-function-templates}
@vindex ess-insert-function-templates
is non-@code{nil}, you will be presented with a template defined by
@code{ess-function-template}
@vindex ess-function-template
which defaults to a skeleton function construct.

You may then edit the function as required.  The edit buffer generated
by @code{ess-dump-object-into-edit-buffer} is placed in the @code{ESS}
major mode which provides a number of commands to facilitate editing
@b{S} source code.  Commands are provided to intelligently indent @b{S}
code, evaluate portions of @b{S} code and to move around @b{S} code
constructs.

@cindex dump files
@cindex reverting function definitions
@strong{Note:} when you dump a file with @kbd{C-c C-d}, ESS first checks
to see whether there already exists an edit buffer containing that
object and, if so, pops you directly to that buffer.  If not, ESS next
checks whether there is a file in the appropriate place with the
appropriate name (@pxref{Source Files}) and if so, reads in that file.
You can use this facility to return to an object you were editing in a
previous session (and which possibly was never loaded to the @b{S}
session).  Finally, if both these tests fail, the @b{ESS} process is
consulted and a @code{dump()} command issued.
@pindex dump()
If you want to force ESS to ask the @b{ESS} process for the object's
definition (say, to reformat an unmodified buffer or to revert back to
S's idea of the object's definition) pass a prefix argument to
@code{ess-dump-object-into-edit-buffer} by typing @kbd{C-u C-c C-d}.

@comment  node-name,  next,  previous,  up
@node Loading, Error Checking, Edit buffer, Editing
@section Loading source files into the @b{ESS} process

The best way to get information --- particularly function definitions
--- into @b{S} is to load them in as source file, using S's
@code{source} function.  You have already seen how to create source
files using @kbd{C-c C-d}; ESS provides a complementary command for
loading source files (even files not created with ESS!) into the @b{ESS}
process:

@itemize @bullet
@item
@kbd{C-c C-l} (@code{ess-load-file}) @*
@pindex ess-load-file
Loads a file into the @b{ESS} process using @code{source()}.
@pindex source()
@end itemize

@noindent
After typing @kbd{C-c C-l} you will prompted for the name of the file to
load into S; usually this is the current buffer's file which is the
default value (selected by simply pressing @kbd{RET} at the prompt).
You will be asked to save the buffer first if it has been modified (this
happens automatically if the buffer was generated with @kbd{C-c C-d}).
The file will then be loaded, and if it loads successfully you will be
returned to the @b{ESS} process.

@comment  node-name,  next,  previous,  up
@node Error Checking, Evaluating code, Loading, Editing
@section Detecting errors in source files
@cindex errors
@cindex parsing errors
If any errors occur when loading a file with @code{C-c C-l}, ESS will
inform you of this fact.  In this case, you can jump directly to the
line in the source file which caused the error by typing @kbd{C-x `}
(@code{ess-parse-errors}).
@pindex ess-parse-errors
You will be returned to the offending file (loading it into a buffer if
necessary) with point at the line @b{S} reported as containing the
error.  You may then correct the error, and reload the file.  Note that
none of the commands in an @b{S} source file will take effect if any
part of the file contains errors.

Sometimes the error is not caused by a syntax error (loading a
non-existent file for example). In this case typing @kbd{C-x `} will
simply display a buffer containing S's error message.  You can force
this behavior (and avoid jumping to the file when there @emph{is} a
syntax error) by passing a prefix argument to @code{ess-parse-errors}
with @kbd{C-u C-x `}.

@comment  node-name,  next,  previous,  up
@node Evaluating code, Indenting, Error Checking, Editing
@section Sending code to the @b{ESS} process

Other commands are also available for evaluating portions of code in the
S process.  These commands cause the selected code to be evaluated
directly by the @b{ESS} process as if you had typed them in at the
command line; the @code{source()} function is not used.  You may choose
whether both the commands and their output appear in the process buffer
(as if you had typed in the commands yourself) or if the output alone is
echoed.  The behavior is controlled by the variable
@code{ess-eval-visibly-p} whose default is @code{nil}
@vindex ess-eval-visibly-p
(display output only).  Passing a prefix argument (@kbd{C-u}) to any of
the following commands, however, reverses the meaning of
@code{ess-eval-visibly-p} for that command only --- for example @kbd{C-u
C-c C-j} echoes the current line of S (or other) code in the @b{ESS}
process buffer, followed by its output.  This method of evaluation is an
alternative to S's @code{source()} function
@pindex source()
@cindex echoing commands when evaluating
@cindex evaluating code with echoed commands
when you want the input as well as the output to be displayed.  (You can
sort of do this with @code{source()} when the option @code{echo=T} is
set, except that prompts do not get displayed.  ESS puts prompts in the
right places.) The commands for evaluating code are:

@itemize @bullet
@cindex evaluating @b{S} expressions
@item
@kbd{C-c C-j} (@code{ess-eval-line}) @*
@pindex ess-eval-line
Send the line containing point to the @b{ESS} process.

@item
@kbd{C-c M-j} (@code{ess-eval-line-and-go}) @*
@pindex ess-eval-line-and-go
As above, but returns you to the @b{ESS} process buffer as well.

@item
@kbd{C-c C-f} or @kbd{ESC C-x} (@code{ess-eval-function}) @*
@pindex ess-eval-function
Send the @b{S} function containing point to the @b{ESS} process.

@item
@kbd{C-c M-f} (@code{ess-eval-function-and-go}) @*
@pindex ess-eval-function-and-go
As above, but returns you to the @b{ESS} process buffer as well.

@item
@kbd{C-c C-r} (@code{ess-eval-region}) @*
@pindex ess-eval-region
Send the text between point and mark to the @b{ESS} process.

@item
@kbd{C-c M-r} (@code{ess-eval-region-and-go}) @*
@pindex ess-eval-region-and-go
As above, but returns you to the @b{ESS} process buffer as well.

@item
@kbd{C-c C-b} (@code{ess-eval-buffer}) @*
@pindex ess-eval-buffer
Send the contents of the edit buffer to the @b{ESS} process.

@item
@kbd{C-c M-b} (@code{ess-eval-buffer-and-go}) @*
@pindex ess-eval-function-and-go
As above, but returns you to the @b{ESS} process buffer as well.

@item
@kbd{C-c C-n} (@code{ess-eval-line-and-next-line}) @*
@pindex ess-eval-line-and-next-line
@cindex stepping through code
@cindex debugging @b{S} functions
Sends the current line to the @b{ESS} process, echoing it in the process
buffer, and moves point to the next line.  Useful when debugging for
stepping through your code.
@end itemize

It should be stressed once again that these @code{ess-eval-} commands
should only be used for evaluating small portions of code for debugging
purposes, or for generating transcripts from source files.  When editing
S functions, @kbd{C-c C-l} is the command to use to update the
function's value.  In particular, @code{ess-eval-buffer} is now largely
obsolete.

One final command is provided for spot-evaluations of @b{S} code:

@itemize @bullet
@kbd{C-c C-e} (@code{ess-execute-in-tb}) @*
@pindex ess-execute-in-tb
Prompt for an @b{S} expression and evaluate it.  Displays result in a
temporary buffer.
@end itemize

@noindent
This is useful for quick calculations, etc.

All the above commands are useful for evaluating small amounts of code
and observing the results in the process buffer.  A useful way to work
is to divide the frame into two windows; one containing the source code
and the other containing the process buffer.  If you wish to make the
process buffer scroll automatically when the output reaches the bottom
of the window, you will need to set the variable
@code{comint-scroll-to-bottom-on-output} to @code{others} or @code{t}.

*** Maybe a link to customization section here ***

@comment  node-name,  next,  previous,  up
@node Indenting, Other edit buffer commands, Evaluating code, Editing
@section Indenting and formatting @b{S} code

ESS now provides a sophisticated mechanism for indenting @b{S} source
code (thanks to Ken'ichi Shibayama).  Compound statements (delimited by
@samp{@{} and @samp{@}}) are indented relative to their enclosing block.
In addition, the braces have been electrified to automatically indent to
the correct position when inserted, and optionally insert a newline at
the appropriate place as well.  Lines which continue an incomplete
expression are indented relative to the first line of the expression.
Function definitions, @code{if} statements, calls to @code{expression()}
and loop constructs are all recognized and indented appropriately.  User
variables are provided to control the amount if indentation in each
case, and there are also a number of predefined indentation styles to
choose from.  @xref{Indentation variables}.

@cindex comments in S
Comments are also handled specially by ESS, using an idea borrowed from
the Emacs-Lisp indentation style.  By default,
comments beginning with @samp{###}
are aligned to the beginning of the line.  Comments beginning with
@samp{##} are aligned to the current level of indentation for the block
containing the comment.  Finally, comments beginning with @samp{#} are
aligned to a column on the right (the 40th column by default, but this
value is controlled by the variable @code{comment-column},)
@vindex comment-column
or just after the expression on the line containing the comment if it
extends beyond the indentation column.  You turn off the default
behavior by adding the line
@code{(setq ess-fancy-comments nil)} to your @file{.emacs} file.
@vindex ess-fancy-comments
(GNU emacs uses the filename @file{~/.emacs} and
Xemacs uses the filename @file{~/.xemacs/init.el}
for the initialization file.)

The indentation commands provided by ESS are:
@cindex indenting
@cindex formatting source code

@itemize @bullet
@item
@kbd{TAB} (@code{ess-indent-command}) @*
Indents the current line as @b{S} code.  If a prefix argument is given,
all following lines which are part of the same (compound) expression are
indented by the same amount (but relative indents are preserved).

@item
@kbd{LFD} (@code{newline-and-indent}) @*
Insert a newline, and indent the next line.  (Note: if your keyboard
does not have a @key{LINEFEED} key, you can use @kbd{C-j} instead.)
Some people prefer to bind @key{RET} to this command.

@item
@kbd{ESC C-q} (@code{ess-indent-exp}) @*
Indents each line in the @b{S} (compound) expression which follows point.
Very useful for beautifying your @b{S} code.

@item
@kbd{@{} and @kbd{@}} (@code{ess-electric-brace}) @*
The braces automatically indent to the correct position when typed.

@item
@kbd{M-;} (@code{indent-for-comment}) @*
Indents a comment line appropriately, or inserts an empty
(single-@samp{#}) comment.

@item
@kbd{M-x ess-set-style} @*
Set the formatting style in this buffer to be one of the predefined
styles: @code{GNU}, @code{BSD}, @code{K&R}, @code{CLB}, and @code{C++}.
The @code{DEFAULT} style uses the default values for the indenting
variables (unless they have been modified in your @file{.emacs} file.)
@cindex @file{.emacs} file
This command causes all of the formatting variables
@pxref{Indentation variables} to be buffer-local.
@end itemize

@comment  node-name,  next,  previous,  up
@node Other edit buffer commands, Source Files, Indenting, Editing
@section Commands for motion, completion and more

A number of commands are provided to move across function definitions
in the edit buffer:
@itemize @bullet
@item
@kbd{ESC C-e} (@code{ess-beginning-of-function}) @*
@pindex ess-beginning-of-function
Moves point to the beginning of the function containing point.

@item
@kbd{ESC C-a} (@code{ess-end-of-function}) @*
@pindex ess-end-of-function
Moves point to the end of the function containing point.

@item
@kbd{ESC C-h} (@code{ess-mark-function}) @*
Places point at the beginning of the @b{S} function containing point, and
mark at the end.
@end itemize
@noindent
Don't forget the usual Emacs commands for moving over balanced
expressions and parentheses: @xref{Lists, Lists and Sexps, Lists and
Sexps, Emacs, The GNU Emacs Reference Manual}.

@cindex completion in edit buffer
Completion is provided in the edit buffer in a similar fashion to the
process buffer: @kbd{M-TAB} completes file names and @kbd{M-?} lists
file completions.  Since @key{TAB} is used for indentation in the edit
buffer, object completion is now performed with @kbd{C-c TAB}.  Note
however that completion is only provided over globally known S objects
(such as system functions) --- it will @emph{not} work for arguments to
functions or other variables local to the function you are editing.

Finally, two commands are provided for returning to the @b{ESS} process buffer:

@itemize @bullet
@item
@kbd{C-c C-z} (@code{ess-switch-to-end-of-ESS}) @*
@pindex ess-switch-to-end-of-ESS
Returns you to the @b{ESS} process buffer, placing point at the end of the
buffer.

@item
@kbd{C-c C-y} (@code{ess-switch-to-ESS}) @*
@pindex ess-switch-to-ESS
Also returns to to the @b{ESS} process buffer, but leaves point where it is.
@end itemize

In addition some commands available in the process buffer are also
available in the edit buffer.  You can still read help files with
@kbd{C-c C-v}, edit another function with @kbd{C-c C-d} and of course
@kbd{C-c C-l} can be used to load a source file into S.  @xref{Other},
for more details on these commands.

@comment  node-name,  next,  previous,  up
@node Source Files, Source Directories, Other edit buffer commands, Editing
@section Maintaining @b{S} source files

Every edit buffer in ESS is associated with a @dfn{dump file} on disk.
Dump files are created whenever you type @kbd{C-c C-d}
(@code{ess-dump-object-into-edit-buffer}), and may either be deleted
after use, or kept as a backup file or as a means of keeping several
versions of an @b{S} function.
@cindex dump files

@defvr {User Option} ess-delete-dump-files
If non-@code{nil}, dump files created with C-c C-d are deleted
immediately after they are created by the ess-process.
@end defvr

Since immediately after @b{S} dumps an object's definition to a disk
file the source code on disk corresponds exactly to S's idea of the
object's definition, the disk file isn't really needed; deleting it now
has the advantage that if you @emph{don't} modify the file (say, because
you just wanted to look at the definition of one of the standard S
functions) the source dump file won't be left around when you kill the
buffer.  Note that this variable only applies to files generated with
S's @code{dump} function; it doesn't apply to source files which already
exist.  The default value is @code{t}.

@defvr {User Option} ess-keep-dump-files
Option controlling what to do with the dump file after an object has
been successfully loaded into S.  Valid values are @code{nil} (always
delete), @code{ask} (always ask whether to delete), @code{check} (delete
files generated with @kbd{C-c C-d} in this Emacs session, otherwise ask
--- this is the default) and @code{t} (never delete).  This variable is
buffer-local.
@end defvr

After an object has been successfully (i.e. without error) been loaded
back into @b{S} with @kbd{C-c C-l}, the disk file again corresponds
exactly (well, almost --- see below) to S's record of the object's
definition, and so some people prefer to delete the disk file rather
than unnecessarily use up space.  This option allows you to do just
that.

@cindex comments
@cindex project work in S
@cindex historic backups
If the value of @code{ess-keep-dump-files} is @code{t}, dump files are
never deleted after they are loaded.  Thus you can maintain a complete
text record of the functions you have edited within ESS.  Backup files
kept as usual, and so by using the Emacs numbered backup facility ---
@pxref{Backup Names, Single or Numbered Backups, Single or Numbered
Backups, emacs, The Gnu Emacs Reference Manual}, you can keep a historic
record of function definitions.  Another possibility is to maintain the
files with a version-control system such as RCS @xref{Version Control,
Version Control, Version Control, emacs, The Gnu Emacs Reference
Manual}.  As long as a dump file exists in the appropriate place for a
particular object, editing that object with @kbd{C-c C-d} finds that
file for editing (unless a prefix argument is given) --- the @b{ESS}
process is not consulted.  Thus you can keep comments @emph{outside} the
function definition as a means of documentation that does not clutter
the @b{S} object itself.  Another useful feature is that you may format
the code in any fashion you please without @b{S} re-indenting the code
every time you edit it.  These features are particularly useful for
project-based work.

If the value of @code{ess-keep-dump-files} is nil, the dump file is always
silently deleted after a successful load with @kbd{C-c C-l}.  While this
is useful for files that were created with @kbd{C-c C-d} it also applies
to any other file you load (say, a source file of function
definitions), and so can be dangerous to use unless you are careful.
Note that since @code{ess-keep-dump-files} is buffer-local, you can make
sure particular files are not deleted by setting it to @code{t} in the
Local Variables section of the file @xref{File Variables, Local
Variables in Files, Local Variables in Files, emacs, The Gnu Emacs
Reference Manual}.

A safer option is to set @code{ess-keep-dump-files} to @code{ask}; this
means that ESS will always ask for confirmation before deleting the
file.  Since this can get annoying if you always want to delete dump
files created with @code{C-c C-d}, but not any other files, setting
@code{ess-keep-dump-files} to @code{check} (the default value) will
silently delete dump files created with @kbd{C-c C-d} in the current
Emacs session, but query for any other file.  Note that in any case you
will only be asked for confirmation once per file, and your answer is
remembered for the rest of the Emacs session.

Note that in all cases, if an error (such as a syntax error) is detected
while loading the file with @kbd{C-c C-l}, the dump file is @emph{never}
deleted.  This is so that you can edit the file in a new Emacs session
if you happen to quit Emacs before correcting the error.

@cindex autosaving
Dump buffers are always autosaved, regardless of the value of
@code{ess-keep-dump-files}.

@comment  node-name,  next,  previous,  up
@node Source Directories,  , Source Files, Editing
@section Names and locations of dump files

@cindex dump file names
Every dump file should be given a unique file name, usually the dumped
object name with some additions.

@defvr {User Option} ess-dump-filename-template
Template for filenames of dumped objects.  @code{%s} is replaced by the
object name.
@end defvr

@noindent
By default, dump file names are the user name, followed by @samp{.} and
the object and ending with @samp{.S}.  Thus if user @code{joe} dumps the
object @code{myfun} the dump file will have name @file{joe.myfun.S}.
The username part is included to avoid clashes when dumping into a
publicly-writable directory, such as @file{/tmp}; you may wish to remove
this part if you are dumping into a directory owned by you.

@cindex dump file directories
You may also specify the directory in which dump files are written:

@defvr {User Option} ess-source-directory
Directory name (ending in a slash) where @b{S} dump files are to be written.
@end defvr

By default, dump files are always written to @file{/tmp}, which is fine
when @code{ess-keep-dump-files} is @code{nil}.  If you are keeping dump
files, then you will probably want to keep them somewhere in your home
directory, say @file{~/S-source}.  This could be achieved by including
the following line in your @file{.emacs} file:
@cindex @file{.emacs} file
@example
(setq ess-source-directory (expand-file-name "~/S-source/"))
@end example

If you would prefer to keep your dump files in separate directories
depending on the value of some variable, ESS provides a facility for
this also.  By setting @code{ess-source-directory} to a lambda
expression which evaluates to a directory name, you have a great deal of
flexibility in selecting the directory for a particular source file to
appear in.  The lambda expression is evaluated with the process buffer
as the current buffer and so you can use the variables local to that
buffer to make your choice.  For example, the following expression
causes source files to be saved in the subdirectory @file{Src} of the
directory the @b{ESS} process was run in.

@example
(setq ess-source-directory
      (lambda ()
         (concat ess-directory "Src/")))
@end example

@noindent
@vindex ess-directory
(@code{ess-directory} is a buffer-local variable in process buffers
which records the directory the @b{ESS} process was run from.)  This is
useful if you keep your dump files and you often edit objects with the
same name in different @b{ESS} processes.  Alternatively, if you often
change your @b{S} working directory during an @b{S} session, you may
like to keep dump files in some subdirectory of the directory pointed to
by the first element of the current search list.  This way you can edit
objects of the same name in different directories during the one S
session:
@cindex search list
@cindex working directory
@example
(setq ess-source-directory
   (lambda ()
       (file-name-as-directory
        (expand-file-name (concat
                           (car ess-search-list)
                           "/.Src")))))
@end example
@vindex ess-search-list

If the directory generated by the lambda function does not exist but can
be created, you will be asked whether you wish to create the directory.
If you choose not to, or the directory cannot be created, you will not
be able to edit functions.


@comment  node-name,  next,  previous,  up
@node Help, Transcript Mode, Editing, Top
@chapter Reading help files in ESS
@cindex help files

ESS provides an easy-to-use facility for reading @b{S} help files from
within Emacs.  From within the @b{ESS} process buffer or any ESS edit
buffer, typing @kbd{C-c C-v} (@code{ess-display-help-on-object})
@pindex ess-display-help-on-object
will prompt you for the name of an object for which you would like
documentation.  Completion is provided over all objects which have help
files.

If the requested object has documentation, you will be popped into a
buffer (named @code{*help(@var{obj-name})*}) containing the help file.
This buffer is placed in a special `S Help' mode which disables the
usual editing commands but which provides a number of keys for paging
through the help file:

@itemize @bullet
Help commands:

@item
@kbd{?} (@code{ess-describe-help-mode}) @*
@pindex ess-describe-help-mode
Pops up a help buffer with a list of the commands available in @b{S} help
mode.

@item
@kbd{h} (@code{ess-display-help-on-object}) @*
@pindex ess-display-help-on-object
Pop up a help buffer for a different object

Paging commands:

@cindex paging commands in help buffers
@item
@kbd{b} or @kbd{DEL} (@code{scroll-down}) @*
Move one page backwards through the help file.

@item
@kbd{SPC} (@code{scroll-up}) @*
Move one page forwards through the help file.

@item
@kbd{>} (@code{beginning-of-buffer}) and @kbd{<} (@code{end-of-buffer})
@*
Move to the beginning and end of the help file, respectively.

Section-based motion commands:

@item
@kbd{n} (@code{ess-skip-to-next-section}) and @kbd{p}
(@code{ess-skip-to-previous-section}) @* Move to the next and previous
@pindex ess-skip-to-next-section
@pindex ess-skip-to-previous-section
section header in the help file, respectively.  A section header
consists of a number of capitalized words, followed by a colon.

In addition, the @kbd{s} key followed by one of the following letters
will jump to a particular section in the help file:
@pindex ess-skip-to-help-section
@table @samp
@item a
ARGUMENTS:

@item b
BACKGROUND:

@item B
BUGS:

@item d
DETAILS:

@item D
DESCRIPTION:

@item e
EXAMPLES:

@item n
NOTE:

@item o
OPTIONAL ARGUMENTS:

@item r
REQUIRED ARGUMENTS:

@item R
REFERENCES:

@item s
SIDE EFFECTS:

@item s
SEE ALSO:

@item u
USAGE:

@item v
VALUE:

@item <
Jumps to beginning of file

@item >
Jumps to end of file

@item ?
Pops up a help buffer with a list of the defined section motion keys.
@end table

Miscellaneous:

@item
@kbd{r} (@code{ess-eval-region}) @*
@pindex ess-eval-region
Send the contents of the current region to the @b{ESS} process.  Useful
for running examples in help files.

@item
@kbd{/} (@code{isearch-forward}) @*
Same as @kbd{C-s}.

Quit commands:

@item
@kbd{q} (@code{ess-switch-to-end-of-ESS}) @*
@pindex ess-switch-to-end-of-ESS
Returns to the @b{ESS} process buffer in another window, leaving the
help window visible.

@item
@kbd{k} (@code{kill-buffer}) @*
Kills the help buffer.

@item
@kbd{x} (@code{ess-kill-buffer-and-go}) @*
Return to the @b{ESS} process, killing this help buffer.
@end itemize

In addition, all of the ESS commands available in the edit buffers are
also available in @b{S} help mode (@pxref{Edit buffer}).  Of course, the
usual (non-editing) Emacs commands are available, and for convenience
the digits and @key{-} act as prefix arguments.

If a help buffer already exists for an object for which help is
requested, that buffer is popped to immediately; the @b{ESS} process is
not consulted at all.  If the contents of the help file have changed,
you either need to kill the help buffer first, or pass a prefix argument
(with @kbd{C-u}) to @code{ess-display-help-on-object}.

Help buffers are marked as temporary buffers in ESS, and are deleted
when @code{ess-quit} or @code{ess-cleanup} are called.
@pindex ess-quit
@pindex ess-cleanup
@cindex temporary buffers

@comment  node-name,  next,  previous,  up
@node Transcript Mode, Miscellaneous, Help, Top
@chapter Manipulating saved transcript files

Inferior @b{S} mode records the transcript (the list of all commands
executed, and their output) in the process buffer, which can be saved as
a @dfn{transcript file}, which should normally have the suffix
@file{.St}.  The most obvious use for a transcript file is as a static
record of the actions you have performed in a particular @b{S} session.
Sometimes, however, you may wish to re-execute commands recorded in the
transcript file by submitting them to a running @b{ESS} process.  This
is what Transcript Mode is for.

If you load file a with the suffix @file{.St} into Emacs, it is placed
in S Transcript Mode.  Transcript Mode is similar to Inferior @b{S} mode
(@pxref{Entering commands}):
@cindex transcript mode motion
@cindex motion in transcript mode
paragraphs are defined as a command and its output, and you can move
though commands either with the paragraph commands or with @kbd{C-c C-p}
and @kbd{C-c C-n}.

@menu
* Resubmit::                    Resubmitting commands from the transcript file
* Clean::                       Cleaning transcript files
@end menu

@comment  node-name,  next,  previous,  up
@node Resubmit, Clean, Transcript Mode, Transcript Mode
@section Resubmitting commands from the transcript file

Three commands are provided to re-submit command lines from the
transcript file to a running @b{ESS} process.  They are:

@itemize @bullet
@item
@kbd{RET} (@code{ess-transcript-send-command}) @*
Send the current command line to the @b{ESS} process, and execute it.
@pindex ess-transcript-send-command

@item
@kbd{C-c RET} (@code{ess-transcript-copy-command}) @*
Copy the current command to the @b{ESS} process, and switch to the
@b{ESS} process buffer (ready to edit the copied command).
@pindex ess-transcript-copy-command

@item
@kbd{M-RET} (@code{ess-transcript-send-command-and-move}) @*
Send the current command to the @b{ESS} process, and move to the next
command line.  This command is useful for submitting a series of
commands.
@end itemize

@noindent
Note that these commands are similar to those on the same keys in
Inferior @b{S} Mode.  In all three cases, the commands should be
executed when the cursor is on a command line in the transcript; the
prompt is automatically removed before the command is submitted.

@comment  node-name,  next,  previous,  up
@node Clean,  , Resubmit, Transcript Mode
@section Cleaning transcript files

Yet another use for transcript files is to extract the command lines for
inclusion in an @b{S} source file or function.  Transcript mode provides
one command which does just this:

@itemize @bullet
@item
@kbd{C-c C-w} (@code{ess-transcript-clean-region}) @*
Deletes all prompts and command output in the region, leaving only the
commands themselves.
@end itemize

@noindent
The remaining command lines may then be copied to a source file or edit
buffer for inclusion in a function definition, or may be evaluated
directly (@pxref{Evaluating code}) using the code evaluation commands
from @b{S} mode, also available in @b{S} Transcript Mode.

@comment  node-name,  next,  previous,  up
@node Miscellaneous, Bugs Etc, Transcript Mode, Top
@chapter Other features of ESS

ESS has a few miscellaneous features, which didn't fit anywhere else.

@menu
* Highlighting::                Syntactic highlighting of buffers
* Graphics::                    Using graphics with ESS
* Object Completion::           
@end menu

@comment  node-name,  next,  previous,  up
@node Highlighting, Graphics, Miscellaneous, Miscellaneous
@section Syntactic highlighting of buffers

ESS provides Font-Lock (@pxref{Faces,,Using Multiple Typefaces,
emacs, The Gnu Emacs Reference Manual}) patterns for Inferior @b{S} Mode, S
Mode, and @b{S} Transcript Mode buffers.
@cindex Font-lock mode
@cindex highlighting

To activate the highlighting, you need to turn on Font Lock mode in the
appropriate buffers.  This can be done on a per-buffer basis with
@kbd{M-x font-lock-mode}, or may be done by adding
@code{turn-on-font-lock} to @code{inferior-ess-mode-hook},
@code{ess-mode-hook} and @code{ess-transcript-mode-hook}
(@pxref{Hooks}).  Your systems administrator may have done this for you
in @file{ess-site.el} (@pxref{Customization}).

The font-lock patterns are defined in three variables, which you may
modify if desired:

@defvar ess-inf-font-lock-keywords
Font-lock patterns for Inferior @b{ESS} Mode.  The default value
highlights prompts, inputs, assignments, output messages, vector and
matrix labels, and literals such as @samp{NA} and @code{TRUE}.
@end defvar

@defvar ESS-font-lock-keywords
Font-lock patterns for @b{ESS} programming mode.  The default value
highlights function names, literals, assignments, source functions and
reserved words.
@end defvar

@defvar ess-trans-font-lock-keywords
Font-lock patterns for @b{ESS} Transcript Mode.  The default value
highlights the same stuff as in Inferior @b{ESS} Mode.
@end defvar

@comment  node-name,  next,  previous,  up
@node Graphics, Object Completion, Highlighting, Miscellaneous
@section Using graphics with ESS

@cindex graphics
One of the main features of the @code{S} package is its ability to
generate high-resolution graphics plots, and ESS provides a number of
features for dealing with such plots.

@menu
* printer::                     The printer() graphics driver
* X11::                         The X11() (and other X-windows based) driver
@end menu

@comment  node-name,  next,  previous,  up
@node printer, X11, Graphics, Graphics
@subsection Using ESS with the @code{printer()} driver

This is the simplest (and least desirable) method of using graphics
within ESS.  S's @code{printer()} device driver produces crude character
based plots which can be contained within the @b{ESS} process buffer
itself.  To start using character graphics, issue the @b{S} command
@example
printer(width=79)
@end example
@pindex printer()
(the @code{width=79} argument prevents Emacs line-wrapping at column
80 on an 80-column terminal.  Use a different value for a terminal with
a different number of columns.) Plotting commands do not generate
graphics immediately, but are stored until the @code{show()} command
is issued, which displays the current figure.

@comment  node-name,  next,  previous,  up
@node X11,  , printer, Graphics
@subsection Using ESS with windowing devices

@cindex X windows
Of course, the ideal way to use graphics with ESS is to use a windowing
system.  Under X windows, this requires that the DISPLAY environment
variable be appropriately set, which may not always be the case within
your Emacs process.  ESS provides a facility for setting the value of
DISPLAY before the @b{ESS} process is started if the variable
@code{ess-ask-about-display}
@pindex ess-ask-about-display
is non-@code{nil}.  @xref{Customization}, for details of this variable,
and @pxref{Starting up} for information on how to set the value of
DISPLAY when beginning an @b{S} session.



@comment  node-name,  next,  previous,  up
@node Object Completion,  , Graphics, Miscellaneous
@section Object Completion


If you are running S-PLUS or R, you might consider installing the
database files.  From within (X)Emacs, "C-x d" to the directory
containing ESS.  Now:

@code{M-x S+3}

(get S-PLUS running.  once you have reached the SPLUS 3.x prompt, do:)

@code{M-x ess-create-object-name-db}

(this will create the file: ess-s+3-namedb.el; if it isn't in the ESS
directory, move it there).

Then, completions will be autoloaded and will not be regenerated for
every session.

For R:

@code{M-x R}

(get R running.  once you have reached the R prompt, do:)

@code{M-x ess-create-object-name-db}

(this will create the file: ess-r-namedb.el; if it isn't in the ESS
directory, move it there).


@comment  node-name,  next,  previous,  up@chapter Using S4
@node Bugs Etc, Customization, Miscellaneous, Top
@chapter Bugs and Bug Reporting, Mailing Lists

@menu
* Bugs::                        
* Reporting Bugs::              
* Mailing Lists::               
@end menu

@node Bugs, Reporting Bugs, Bugs Etc, Bugs Etc
@section Bugs
@cindex bugs
@include bugs.texi

@comment  node-name,  next,  previous,  up
@node Reporting Bugs, Mailing Lists, Bugs, Bugs Etc
@section Reporting Bugs
@cindex Bug reports
@pindex ess-submit-bug-report
@include bugrept.texi

@comment  node-name,  next,  previous,  up
@node Mailing Lists,  , Reporting Bugs, Bugs Etc
@section Mailing Lists

@include mailing.texi

@c _not_yet_ @node Help OS, Installation, Help for Statistical Packages, Top
@c _not_yet_ @comment  node-name,  next,  previous,  up
@c _not_yet_ @chapter Help, arranged by Operating System
@c _not_yet_ 
@c _not_yet_ @menu
@c _not_yet_ * Unix installation::
@c _not_yet_ * Microsoft Windows installation:: 
@c _not_yet_ * System dependent::            Other variables you may need to change
@c _not_yet_ @end menu



@comment  node-name,  next,  previous,  up
@node Customization, Key Index, Bugs Etc, Top
@appendix Customizing ESS
@cindex customization

ESS can be easily customized to your taste simply by including the
appropriate lines in your @file{.emacs} file.  There are numerous
variables which affect the behavior of ESS in certain situations which
can be modified to your liking.  Keybindings may be set or changed to
your preferences, and for per-buffer customizations hooks are also
available.

@menu
* Variables::                   Variables for customization
* Hooks::                       Customizing ESS with hooks
* Keybindings::                 Changing the default ESS keybindings
@end menu

@comment  node-name,  next,  previous,  up
@node Variables, Hooks, Customization, Customization
@appendixsec Variables for customization
@cindex variables

ESS is easily customizable by means of setting variables in your
@file{.emacs} file.
@cindex @file{.emacs} file
In most cases, you can change defaults by including lines of the form
@cindex defaults
@example
(setq @var{variable-name} @var{value})
@end example
@noindent
in your @file{.emacs}.

In what follows, variable names will be listed along with their
descriptions and default values.  Just substitute the variable name and
the new value into the template above.

@menu
* Variables for starting ESS::  Variables for starting ESS
* Dump file variables::         Variables for dump files
* Indentation variables::       Variables controlling indentation
* Variables controlling interaction::  Variables controlling interaction
					with the @b{ESS} process
@end menu

@comment  node-name,  next,  previous,  up
@node Variables for starting ESS, Dump file variables, Variables, Variables
@appendixsubsec Variables for starting ESS

@defvr {User Option} ess-ask-for-ess-directory
Default: @code{t} @*
@cindex starting directory
@cindex directories
If this variable has a non-@code{nil} value, then every time ESS is
run with @kbd{M-x S}
@pindex S
you will be prompted for a directory to use as the working directory for
your @b{S} session; this directory should have a @file{.Data}
subdirectory.
@cindex @file{.Data} directory
If the value of @code{ess-ask-for-ess-directory} is @code{nil}, the
value of @code{S-directory}
@vindex S-directory
is used as the working directory.
@end defvr

@defvr {User Option} S-directory
Default: Your home directory @* The working directory for your @b{S}
session if @code{ess-ask-for-ess-directory} is @code{nil}, and the
default when prompting for a directory if it is not.  For example, you
may wish to set this to the value of the current buffer's working
directory before starting @b{S} by adding the following line to your
@file{.emacs} file (@pxref{Hooks})
@cindex @file{.emacs} file
@example
(setq ess-pre-run-hook
   '((lambda () (setq S-directory default-directory))))
@end example
@end defvr

@defvr {User Option} ess-ask-about-display
Default: @code{nil} @*
If this variable has a non-@code{nil} value, then every time ESS is
run with @kbd{M-x S}
@pindex S
you will be asked for a value for the @code{DISPLAY} environment
variable
@cindex DISPLAY environment variable
@cindex environment variables
to be used in the current @b{S} session.  If this variable is not set
correctly, @b{S} will not be able to create any windows under the X
windowing environment.
@cindex X windows
Completion is provided over the @code{X-displays-list} variable; the
default is the current value of @code{DISPLAY}.  This feature is useful
is you often run @b{S} on a different display than that of the machine you
are running @b{S} from.  If
@code{ess-ask-about-display} is @code{nil}, the current value of
@code{DISPLAY} is used.
@end defvr

@defvr {User Option} X-displays-list
Default: @code{'(":0.0")} @*
List of possible values for the @code{DISPLAY} environment variable,
provided for completion when prompting for such a value.
@end defvr

@comment  node-name,  next,  previous,  up
@node Dump file variables, Indentation variables, Variables for starting ESS, Variables
@appendixsubsec Variables for dump files

@defvr {User Option} ess-insert-function-templates
Default: @code{t} @* If this variable has a non-@code{nil} value, then
dumping a non-existent object will result in the edit buffer containing
a skeleton function definition, ready for editing.
@end defvr

@defvr {User Option} ess-source-directory
Default: @code{"/tmp/"} @*
@cindex dump files
Directory name (ending in @samp{/}) in which dump files are placed.  This
should always be a writable directory.
@end defvr

@defvr {User Option} ess-source-directory-generator
Default: @code{nil} @*
Alternative, dynamic method of specifying the directory for dump files.
@end defvr

@defvr {User Option} ess-dump-filename-template
Default: @var{user_name}@code{.}@var{object_name}@code{.S} @*
Naming system to use for dumped object files.  @xref{Source Directories},
for details of this and the previous two variables.
@end defvr

@defvr {User Option} ess-keep-dump-files
Default: @code{nil} @*
Boolean flag signifying whether to keep dump files or to delete them
after each use.  @xref{Source Files}, for more details.
@end defvr

@comment  node-name,  next,  previous,  up
@node Indentation variables, Variables controlling interaction, Dump file variables, Variables
@appendixsubsec Variables controlling indentation
@cindex formatting source code
@cindex indentation

@defvr {User Option} ess-tab-always-indent
Default: @code{t} @*
If non-@code{nil}, then @kbd{TAB} in the edit buffer always indents the
current line, regardless of the position of point in the line.
Otherwise, indentation is only performed if point is in the lines
indentation, and a tab character is inserted is point is after the first
nonblank character.
@end defvr

@defvr {User Option} ess-auto-newline
Default: @code{nil} @*
Non-@code{nil} means automatically newline before and after braces
inserted in @b{S} code.
@end defvr

The following variables control amounts of indentation.  These variables
automatically become buffer-local in any ESS buffer, and so setting
any of these variables has effect in the current buffer only.


@defvr {User Option} ess-indent-level
Default: 2 @*
Extra indentation of @b{S} statement sub-block with respect to enclosing
braces.
@end defvr

@defvr {User Option} ess-brace-imaginary-offset
Default: 0 @*
Extra indentation (over sub-block indentation) for block following an
open brace which follows on the same line as a statement.
@end defvr

@defvr {User Option} ess-brace-offset
Default: 0 @*
Extra indentation for braces, compared with other text in same context.
@end defvr

@defvr {User Option} ess-continued-statement-offset
Default: 0 @*
Extra indent for lines not starting new statements.
@end defvr

@defvr {User Option} ess-continued-brace-offset
Default: 0 @*
Extra indent for substatements that start with open-braces.
This is in addition to @code{ess-continued-statement-offset}.
@end defvr

@defvr {User Option} ess-arg-function-offset
Default: 2 @*
Extra indent for arguments of function @code{foo} when it is called as
the value of an argument to another function in
@code{arg=foo(...)} form.  If not number, the statements are indented at
open-parenthesis following @code{foo}.
@end defvr

@defvr {User Option} ess-expression-offset
Default: 4 @*
Extra indent for internal substatements of the call to
@code{expression()} specified in
@pindex expression()
@example
@code{obj <- expression(...)}
@end example
@noindent
form.  If not a number, the statements are indented at open-parenthesis
following @samp{expression}.
@end defvr

@defvr {User Option} ess-else-offset
Default: 2 @*
Extra indentation of the @code{else} clause with respect to the
corresponding @code{if}.
@end defvr

@noindent
In addition, a number of default styles are defined for you (in
@code{ess-style-alist}):
@vindex ess-style-alist

@defvr {User Option} ess-default-style
Default: @code{DEFAULT} @*
The default formatting style to use in edit buffers.  The DEFAULT style
uses the values of the above indentation variables at load-time, so that
changing these variables in your @file{.emacs} file will affect your
buffer defaults.  Other styles are:
@code{GNU}, @code{BSD}, @code{K&R}, @code{CLB}, and @code{C++}.
See @file{ess-cust.el} for the complete definitions of the styles.
@xref{Edit buffer}, for more details.
@end defvr

@comment  node-name,  next,  previous,  up
@node Variables controlling interaction,  , Indentation variables, Variables
@appendixsubsec Variables controlling interaction with the @b{ESS} process

@defvr {User Option} comint-input-ring-size
Default: 50 @*
Number of commands to store in the command history.
@end defvr

@defvr {User Option} ess-execute-in-process-buffer
Default: @code{nil} @*
If this is @code{nil}, then the @code{ess-execute-} commands (@pxref{Other})
output to a temporary buffer.  Otherwise, the
output goes to the @b{ESS} process.
@end defvr

@defvr {User Option} ess-eval-visibly-p
Default: @code{nil} @*
If non-@code{nil}, then the @code{ess-eval-} commands (@pxref{Edit
buffer}) echo the @b{S} commands in the process buffer by default.  In any
case, passing a prefix argument to the eval command reverses the meaning
of this variable.
@end defvr

@comment  node-name,  next,  previous,  up
@node Hooks, Keybindings, Variables, Customization
@appendixsec Customizing ESS with hooks
@cindex hooks

ESS provides the following hooks:

@defvr {Hook} ess-mode-hook
Called every time @code{ESS} is run.
@end defvr

@defvr {Hook} ess-mode-load-hook
Called just after the file @file{ess.el} is loaded.  Useful for setting
up your keybindings, etc.
@end defvr

@defvr {Hook} ess-pre-run-hook
Called before the @b{ESS} process is started (e.g., with @kbd{M-x S}).
Good for setting up your directory.
@c ? @pindex S
@end defvr

@defvr {Hook} ess-post-run-hook
Called just after the @b{ESS} process starts up.  This can be used to
evaluate @b{ESS} code at the start of a session, with
@code{ess-eval-visibly}, say.
@end defvr


@defvr {Hook} inferior-ess-mode-hook
For customizing inferior ess mode.  Called after inferior-ess-mode is
entered and variables have been initialized.
@end defvr

@defvr {Hook} ess-help-mode-hook
Called every time when entering ess-help-mode (i.e., an @b{ESS} help
buffer is generated).
@end defvr

@defvr {Hook} ess-send-input-hook
Called just before line input is sent to the process.
@end defvr

@defvr {Hook} ess-transcript-mode-hook
For customizing ESS transcript mode.
@end defvr


@node Keybindings,  , Hooks, Customization
@appendixsec Changing the default ESS keybindings

ESS provides a separate keymaps (keymap variables) for @b{ESS} process
buffers, edit buffers and for help buffers.  The key bindings in the
edit buffers further depend on the language and dialect in use.

@defvr {Keymap} inferior-ess-mode-map
@vindex comint-mode-map
Keymap used in the @b{ESS} process buffer.  The bindings from
@code{comint-mode-map} are automatically inherited.
@end defvr

@defvr {Keymap} ess-mode-map
Keymap used within edit (ess-mode) buffers.
@end defvr

@defvr {Keymap} ess-eval-map
Keymap used within edit buffers for sending ESS code to the running
process.
@end defvr

@defvr {Keymap} ess-help-mode-map
Keymap used within help buffers.  In addition, @code{ess-help-sec-map}
is the keymap for the @samp{s} prefix key.  Keys defined in
@code{ess-help-sec-keys-alist} are automatically inserted into this
keymap
@vindex ess-help-sec-keys-alist
when ESS is loaded.
@end defvr

@defvr {Keymap} ess-transcript-mode-map
Keymap used within ESS transcript buffers.
@end defvr


@node Key Index, Command Index, Customization, Top
@unnumbered Key (Character) Index
@printindex ky



@node Command Index, Concept Index, Key Index, Top
@unnumbered Command and Function Index
@printindex fn


@comment  node-name,  next,  previous,  up
@node Concept Index, Variable and command index, Command Index, Top
@unnumbered Concept Index
@printindex cp

@node Variable and command index,  , Concept Index, Top
@unnumbered Variable and command index
@printindex vr

@contents

@bye
@c Remember to delete these lines before creating the info file.
@c Why?  I makeinfo all of the time without following this advice.
@iftex
@lucidbook
@bindingoffset = 0.5in
@parindent = 0pt
@end iftex

@comment Local Variables:
@comment TeX-master: "ess.texi"
@comment End: