arity 0.4.0

An LSP, formatter, and linter for R
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
-
-.Date
-.POSIXt
:
::
:::
!
!.hexmode
!.octmode
!=
.__H__.cbind
.__H__.rbind
.__S3MethodsTable__.
...elt
...length
...names
..deparseOpts
..getNamespace
.amatch_bounds
.amatch_costs
.ArgsEnv
.AutoloadEnv
.BaseNamespaceEnv
.bincode
.C
.C_R_addTaskCallback
.C_R_getTaskCallbackNames
.C_R_removeTaskCallback
.cache_class
.Call
.Call.graphics
.check_tzones
.class2
.col
.colMeans
.colSums
.Date
.decode_numeric_version
.Defunct
.deparseOpts
.Deprecated
.detach
.Device
.Devices
.difftime
.doSortWrap
.doTrace
.doWrap
.dynLibs
.encode_numeric_version
.expand_R_libs_env_var
.External
.External.graphics
.External2
.F_dchdc
.F_dqrcf
.F_dqrdc2
.F_dqrqty
.F_dqrqy
.F_dqrrsd
.F_dqrxb
.F_dtrco
.First.sys
.format.zeros
.formula2varlist
.Fortran
.GenericArgsEnv
.getNamespace
.getNamespaceInfo
.getRequiredPackages
.getRequiredPackages2
.GlobalEnv
.gt
.gtn
.handleSimpleError
.Internal
.internalGenerics
.isMethodsDispatchOn
.isOpen
.kappa_tri
.knownS3Generics
.kronecker
.Last.value
.LC.categories
.leap.seconds
.libPaths
.Library
.Library.site
.Machine
.make_numeric_version
.makeMessage
.mapply
.maskedMsg
.mergeExportMethods
.mergeImportMethods
.noGenerics
.NotYetImplemented
.NotYetUsed
.Options
.OptRequireMethods
.packages
.packageStartupMessage
.Platform
.popath
.POSIXct
.POSIXlt
.pretty
.Primitive
.primTrace
.primUntrace
.rangeNum
.rmpkg
.row
.row_names_info
.rowMeans
.rowNamesDF<-
.rowSums
.S3_methods_table
.S3method
.S3PrimitiveGenerics
.Script
.set_ops_need_as_vector
.set_row_names
.signalSimpleWarning
.standard_regexps
.subset
.subset2
.sys.timezone
.TAOCP1997init
.traceback
.tryResumeInterrupt
.userHooksEnv
.valid.factor
(
[
[.AsIs
[.data.frame
[.Date
[.difftime
[.Dlist
[.DLLInfoList
[.factor
[.hexmode
[.listof
[.noquote
[.numeric_version
[.octmode
[.POSIXct
[.POSIXlt
[.simple.list
[.table
[.warnings
[[
[[.data.frame
[[.Date
[[.factor
[[.numeric_version
[[.POSIXct
[[.POSIXlt
[[<-
[[<-.data.frame
[[<-.factor
[[<-.numeric_version
[[<-.POSIXlt
[<-
[<-.data.frame
[<-.Date
[<-.difftime
[<-.factor
[<-.numeric_version
[<-.POSIXct
[<-.POSIXlt
{
@
@<-
*
*.difftime
/
/.difftime
&
&.hexmode
&.octmode
&&
%*%
%/%
%%
%||%
%in%
%o%
%x%
^
+
+.Date
+.POSIXt
<
<-
<<-
<=
=
==
>
>=
|
|.hexmode
|.octmode
||
~
$
$.DLLInfo
$.package_version
$<-
$<-.data.frame
$<-.POSIXlt
abbreviate
abs
acos
acosh
activeBindingFunction
addNA
addTaskCallback
agrep
agrepl
alist
all
all.equal
all.equal.character
all.equal.default
all.equal.environment
all.equal.envRefClass
all.equal.factor
all.equal.formula
all.equal.function
all.equal.language
all.equal.list
all.equal.numeric
all.equal.POSIXt
all.equal.raw
all.names
all.vars
allowInterrupts
any
anyDuplicated
anyDuplicated.array
anyDuplicated.data.frame
anyDuplicated.default
anyDuplicated.matrix
anyNA
anyNA.data.frame
anyNA.numeric_version
anyNA.POSIXlt
aperm
aperm.default
aperm.table
append
apply
Arg
args
array
array2DF
arrayInd
as.array
as.array.default
as.call
as.character
as.character.condition
as.character.Date
as.character.default
as.character.error
as.character.factor
as.character.hexmode
as.character.numeric_version
as.character.octmode
as.character.POSIXt
as.character.srcref
as.complex
as.data.frame
as.data.frame.array
as.data.frame.AsIs
as.data.frame.character
as.data.frame.complex
as.data.frame.data.frame
as.data.frame.Date
as.data.frame.default
as.data.frame.difftime
as.data.frame.factor
as.data.frame.integer
as.data.frame.list
as.data.frame.logical
as.data.frame.matrix
as.data.frame.model.matrix
as.data.frame.noquote
as.data.frame.numeric
as.data.frame.numeric_version
as.data.frame.ordered
as.data.frame.POSIXct
as.data.frame.POSIXlt
as.data.frame.raw
as.data.frame.table
as.data.frame.ts
as.data.frame.vector
as.Date
as.Date.character
as.Date.default
as.Date.factor
as.Date.numeric
as.Date.POSIXct
as.Date.POSIXlt
as.difftime
as.double
as.double.difftime
as.double.POSIXlt
as.environment
as.expression
as.expression.default
as.factor
as.function
as.function.default
as.hexmode
as.integer
as.list
as.list.data.frame
as.list.Date
as.list.default
as.list.difftime
as.list.environment
as.list.factor
as.list.function
as.list.numeric_version
as.list.POSIXct
as.list.POSIXlt
as.logical
as.logical.factor
as.matrix
as.matrix.data.frame
as.matrix.default
as.matrix.noquote
as.matrix.POSIXlt
as.name
as.null
as.null.default
as.numeric
as.numeric_version
as.octmode
as.ordered
as.package_version
as.pairlist
as.POSIXct
as.POSIXct.Date
as.POSIXct.default
as.POSIXct.numeric
as.POSIXct.POSIXlt
as.POSIXlt
as.POSIXlt.character
as.POSIXlt.Date
as.POSIXlt.default
as.POSIXlt.factor
as.POSIXlt.numeric
as.POSIXlt.POSIXct
as.qr
as.raw
as.single
as.single.default
as.symbol
as.table
as.table.default
as.vector
as.vector.data.frame
as.vector.factor
as.vector.POSIXlt
asin
asinh
asNamespace
asplit
asS3
asS4
assign
atan
atan2
atanh
attach
attachNamespace
attr
attr.all.equal
attr<-
attributes
attributes<-
autoload
autoloader
backsolve
balancePOSIXlt
baseenv
basename
besselI
besselJ
besselK
besselY
beta
bindingIsActive
bindingIsLocked
bindtextdomain
bitwAnd
bitwNot
bitwOr
bitwShiftL
bitwShiftR
bitwXor
body
body<-
bquote
break
browser
browserCondition
browserSetDebug
browserText
builtins
by
by.data.frame
by.default
bzfile
c
c.Date
c.difftime
c.factor
c.noquote
c.numeric_version
c.POSIXct
c.POSIXlt
c.warnings
call
callCC
capabilities
casefold
cat
cbind
cbind.data.frame
ceiling
char.expand
character
charmatch
charToRaw
chartr
chkDots
chol
chol.default
chol2inv
choose
chooseOpsMethod
chooseOpsMethod.default
class
class<-
clearPushBack
close
close.connection
close.srcfile
close.srcfilealias
closeAllConnections
col
colMeans
colnames
colnames<-
colSums
commandArgs
comment
comment<-
complex
computeRestarts
conditionCall
conditionCall.condition
conditionMessage
conditionMessage.condition
conflictRules
conflicts
Conj
contributors
cos
cosh
cospi
crossprod
Cstack_info
cummax
cummin
cumprod
cumsum
curlGetHeaders
cut
cut.Date
cut.default
cut.POSIXt
data.class
data.frame
data.matrix
date
debug
debuggingState
debugonce
declare
default.stringsAsFactors
delayedAssign
deparse
deparse1
det
detach
determinant
determinant.matrix
dget
diag
diag<-
diff
diff.Date
diff.default
diff.difftime
diff.POSIXt
difftime
digamma
dim
dim.data.frame
dim<-
dimnames
dimnames.data.frame
dimnames<-
dimnames<-.data.frame
dir
dir.create
dir.exists
dirname
do.call
dontCheck
double
dput
dQuote
drop
droplevels
droplevels.data.frame
droplevels.factor
dump
duplicated
duplicated.array
duplicated.data.frame
duplicated.default
duplicated.matrix
duplicated.numeric_version
duplicated.POSIXlt
duplicated.warnings
dyn.load
dyn.unload
dynGet
eapply
eigen
emptyenv
enc2native
enc2utf8
encodeString
Encoding
Encoding<-
endsWith
enquote
env.profile
environment
environment<-
environmentIsLocked
environmentName
errorCondition
eval
eval.parent
evalq
Exec
exists
exp
expand.grid
expm1
expression
extSoftVersion
F
factor
factorial
fifo
file
file.access
file.append
file.choose
file.copy
file.create
file.exists
file.info
file.link
file.mode
file.mtime
file.path
file.remove
file.rename
file.show
file.size
file.symlink
Filter
Find
find.package
findInterval
findPackageEnv
findRestart
floor
flush
flush.connection
for
force
forceAndCall
formals
formals<-
format
format.AsIs
format.data.frame
format.Date
format.default
format.difftime
format.factor
format.hexmode
format.info
format.libraryIQR
format.numeric_version
format.octmode
format.packageInfo
format.POSIXct
format.POSIXlt
format.pval
format.summaryDefault
formatC
formatDL
forwardsolve
function
gamma
gc
gc.time
gcinfo
gctorture
gctorture2
get
get0
getAllConnections
getCallingDLL
getCallingDLLe
getConnection
getDLLRegisteredRoutines
getDLLRegisteredRoutines.character
getDLLRegisteredRoutines.DLLInfo
getElement
geterrmessage
getExportedValue
getHook
getLoadedDLLs
getNamespace
getNamespaceExports
getNamespaceImports
getNamespaceInfo
getNamespaceName
getNamespaceUsers
getNamespaceVersion
getNativeSymbolInfo
getOption
getRversion
getSrcLines
getTaskCallbackNames
gettext
gettextf
getwd
gl
globalCallingHandlers
globalenv
gregexec
gregexpr
grep
grepl
grepRaw
grepv
grouping
gsub
gzcon
gzfile
I
iconv
iconvlist
icuGetCollate
icuSetCollate
identical
identity
if
ifelse
Im
importIntoEnv
infoRDS
inherits
integer
interaction
interactive
intersect
intToBits
intToUtf8
inverse.rle
invisible
invokeRestart
invokeRestartInteractively
is.array
is.atomic
is.call
is.character
is.complex
is.data.frame
is.double
is.element
is.environment
is.expression
is.factor
is.finite
is.finite.POSIXlt
is.function
is.infinite
is.infinite.POSIXlt
is.integer
is.language
is.list
is.loaded
is.logical
is.matrix
is.na
is.na.data.frame
is.na.numeric_version
is.na.POSIXlt
is.na<-
is.na<-.default
is.na<-.factor
is.na<-.numeric_version
is.name
is.nan
is.nan.POSIXlt
is.null
is.numeric
is.numeric_version
is.numeric.Date
is.numeric.difftime
is.numeric.POSIXt
is.object
is.ordered
is.package_version
is.pairlist
is.primitive
is.qr
is.R
is.raw
is.recursive
is.single
is.symbol
is.table
is.unsorted
is.vector
isa
isatty
isBaseNamespace
isdebugged
isFALSE
isIncomplete
isNamespace
isNamespaceLoaded
ISOdate
ISOdatetime
isOpen
isRestart
isS4
isSeekable
isSymmetric
isSymmetric.matrix
isTRUE
jitter
julian
julian.Date
julian.POSIXt
kappa
kappa.default
kappa.lm
kappa.qr
kronecker
l10n_info
La_library
La_version
La.svd
labels
labels.default
lapply
lazyLoad
lazyLoadDBexec
lazyLoadDBfetch
lbeta
lchoose
length
length.POSIXlt
length<-
length<-.Date
length<-.difftime
length<-.factor
length<-.POSIXct
length<-.POSIXlt
lengths
letters
LETTERS
levels
levels.default
levels<-
levels<-.factor
lfactorial
lgamma
libcurlVersion
library
library.dynam
library.dynam.unload
licence
license
list
list.dirs
list.files
list2DF
list2env
load
loadedNamespaces
loadingNamespaceInfo
loadNamespace
local
lockBinding
lockEnvironment
log
log10
log1p
log2
logb
logical
lower.tri
ls
make.names
make.unique
makeActiveBinding
Map
mapply
margin.table
marginSums
mat.or.vec
match
match.arg
match.call
match.fun
Math.data.frame
Math.Date
Math.difftime
Math.factor
Math.POSIXt
matrix
max
max.col
mean
mean.Date
mean.default
mean.difftime
mean.POSIXct
mean.POSIXlt
mem.maxNSize
mem.maxVSize
memCompress
memDecompress
memory.profile
merge
merge.data.frame
merge.default
message
mget
min
missing
Mod
mode
mode<-
month.abb
month.name
months
months.Date
months.POSIXt
mostattributes<-
mtfrm
mtfrm.default
mtfrm.POSIXct
mtfrm.POSIXlt
nameOfClass
nameOfClass.default
names
names.POSIXlt
names<-
names<-.POSIXlt
namespaceExport
namespaceImport
namespaceImportClasses
namespaceImportFrom
namespaceImportMethods
nargs
nchar
ncol
NCOL
Negate
new.env
next
NextMethod
ngettext
nlevels
noquote
norm
normalizePath
nrow
NROW
nullfile
numeric
numeric_version
numToBits
numToInts
nzchar
objects
oldClass
oldClass<-
OlsonNames
on.exit
open
open.connection
open.srcfile
open.srcfilealias
open.srcfilecopy
Ops.data.frame
Ops.Date
Ops.difftime
Ops.factor
Ops.numeric_version
Ops.ordered
Ops.POSIXt
options
order
ordered
outer
package_version
packageEvent
packageHasNamespace
packageNotFoundError
packageStartupMessage
packBits
pairlist
parent.env
parent.env<-
parent.frame
parse
parseNamespaceFile
paste
paste0
path.expand
path.package
pcre_config
pi
pipe
plot
pmatch
pmax
pmax.int
pmin
pmin.int
polyroot
pos.to.env
Position
pretty
pretty.default
prettyNum
print
print.AsIs
print.by
print.condition
print.connection
print.data.frame
print.Date
print.default
print.difftime
print.Dlist
print.DLLInfo
print.DLLInfoList
print.DLLRegisteredRoutines
print.eigen
print.factor
print.function
print.hexmode
print.libraryIQR
print.listof
print.NativeRoutineList
print.noquote
print.numeric_version
print.octmode
print.packageInfo
print.POSIXct
print.POSIXlt
print.proc_time
print.restart
print.rle
print.simple.list
print.srcfile
print.srcref
print.summary.table
print.summary.warnings
print.summaryDefault
print.table
print.warnings
prmatrix
proc.time
prod
prop.table
proportions
provideDimnames
psigamma
pushBack
pushBackLength
q
qr
qr.coef
qr.default
qr.fitted
qr.Q
qr.qty
qr.qy
qr.R
qr.resid
qr.solve
qr.X
quarters
quarters.Date
quarters.POSIXt
quit
quote
R_compiled_by
R_system_version
R.home
R.version
R.Version
R.version.string
range
range.Date
range.default
range.POSIXct
rank
rapply
raw
rawConnection
rawConnectionValue
rawShift
rawToBits
rawToChar
rbind
rbind.data.frame
rcond
Re
read.dcf
readBin
readChar
readline
readLines
readRDS
readRenviron
Recall
Reduce
reg.finalizer
regexec
regexpr
registerS3method
registerS3methods
regmatches
regmatches<-
remove
removeTaskCallback
rep
rep_len
rep.Date
rep.difftime
rep.factor
rep.int
rep.numeric_version
rep.POSIXct
rep.POSIXlt
repeat
replace
replicate
require
requireNamespace
restartDescription
restartFormals
retracemem
return
returnValue
rev
rev.default
rle
rm
RNGkind
RNGversion
round
round.Date
round.POSIXt
row
row.names
row.names.data.frame
row.names.default
row.names<-
row.names<-.data.frame
row.names<-.default
rowMeans
rownames
rownames<-
rowsum
rowsum.data.frame
rowsum.default
rowSums
sample
sample.int
sapply
save
save.image
saveRDS
scale
scale.default
scan
search
searchpaths
seek
seek.connection
seq
seq_along
seq_len
seq.Date
seq.default
seq.int
seq.POSIXt
sequence
sequence.default
serialize
serverSocket
set.seed
setdiff
setequal
setHook
setNamespaceInfo
setSessionTimeLimit
setTimeLimit
setwd
showConnections
shQuote
sign
signalCondition
signif
simpleCondition
simpleError
simpleMessage
simpleWarning
simplify2array
sin
single
sinh
sink
sink.number
sinpi
slice.index
socketAccept
socketConnection
socketSelect
socketTimeout
solve
solve.default
solve.qr
sort
sort_by
sort_by.data.frame
sort_by.default
sort.default
sort.int
sort.list
sort.POSIXlt
source
split
split.data.frame
split.Date
split.default
split.POSIXct
split<-
split<-.data.frame
split<-.default
sprintf
sqrt
sQuote
srcfile
srcfilealias
srcfilecopy
srcref
standardGeneric
startsWith
stderr
stdin
stdout
stop
stopifnot
storage.mode
storage.mode<-
str2expression
str2lang
strftime
strptime
strrep
strsplit
strtoi
strtrim
structure
strwrap
sub
subset
subset.data.frame
subset.default
subset.matrix
substitute
substr
substr<-
substring
substring<-
sum
summary
summary.connection
summary.data.frame
Summary.data.frame
summary.Date
Summary.Date
summary.default
summary.difftime
Summary.difftime
summary.factor
Summary.factor
summary.matrix
Summary.numeric_version
Summary.ordered
summary.POSIXct
Summary.POSIXct
summary.POSIXlt
Summary.POSIXlt
summary.proc_time
summary.srcfile
summary.srcref
summary.table
summary.warnings
suppressMessages
suppressPackageStartupMessages
suppressWarnings
suspendInterrupts
svd
sweep
switch
sys.call
sys.calls
Sys.chmod
Sys.Date
sys.frame
sys.frames
sys.function
Sys.getenv
Sys.getlocale
Sys.getpid
Sys.glob
Sys.info
sys.load.image
Sys.localeconv
sys.nframe
sys.on.exit
sys.parent
sys.parents
Sys.readlink
sys.save.image
Sys.setenv
Sys.setFileTime
Sys.setLanguage
Sys.setlocale
Sys.sleep
sys.source
sys.status
Sys.time
Sys.timezone
Sys.umask
Sys.unsetenv
Sys.which
system
system.file
system.time
system2
t
T
t.data.frame
t.default
table
tabulate
Tailcall
tan
tanh
tanpi
tapply
taskCallbackManager
tcrossprod
tempdir
tempfile
textConnection
textConnectionValue
tolower
topenv
toString
toString.default
toupper
trace
traceback
tracemem
tracingState
transform
transform.data.frame
transform.default
trigamma
trimws
trunc
trunc.Date
trunc.POSIXt
truncate
truncate.connection
try
tryCatch
tryInvokeRestart
typeof
unCfillPOSIXlt
unclass
undebug
union
unique
unique.array
unique.data.frame
unique.default
unique.matrix
unique.numeric_version
unique.POSIXlt
unique.warnings
units
units.difftime
units<-
units<-.difftime
unix.time
unlink
unlist
unloadNamespace
unlockBinding
unname
unserialize
unsplit
untrace
untracemem
unz
upper.tri
url
use
UseMethod
utf8ToInt
validEnc
validUTF8
vapply
vector
Vectorize
version
warning
warningCondition
warnings
weekdays
weekdays.Date
weekdays.POSIXt
which
which.max
which.min
while
with
with.default
withAutoprint
withCallingHandlers
within
within.data.frame
within.list
withRestarts
withVisible
write
write.dcf
writeBin
writeChar
writeLines
xor
xpdrows.data.frame
xtfrm
xtfrm.AsIs
xtfrm.data.frame
xtfrm.Date
xtfrm.default
xtfrm.difftime
xtfrm.factor
xtfrm.numeric_version
xtfrm.POSIXct
xtfrm.POSIXlt
xzfile
zapsmall
zstdfile