-
Notifications
You must be signed in to change notification settings - Fork 0
/
allcommands.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
4143 lines (4143 loc) · 43.3 KB
/
allcommands.csv
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
__sp_parse_id
_a_cls_msg
_addgph
_applycoding
_arma_getb
_arma_grcroots
_asmixtest
_asprobit_diparm
_asprobit_estimator
_asprobit_replay
_asprobit_vce_parserun
_assert
_assert_mreldif
_assert_mreldifp
_assert_mreldifs
_assert_obs
_assert_streq
_at
_b_fill0
_b_pclass
_b_post0
_bayes_block_opt
_bayes_eform_footnotes
_bayes_estloop
_bayes_prefix
_bayes_prior_opt
_bayes_reffects
_bayes_utils
_bayesmh_check_opts
_bayesmh_check_parameters
_bayesmh_chk_corrlag
_bayesmh_chk_corropts
_bayesmh_chk_marglmethod
_bayesmh_clear
_bayesmh_eqlablist
_bayesmh_import_model
_bayesmh_init_params
_bayesmh_maxvar_err
_bayesmh_note_maxcorrlag
_bayesmh_note_skip
_bayesmh_saving_notes
_bayesmh_summaryopts
_bayesmhpost_options
_bayesmhpost_paramlist
_bayesstatsic_compute
_bayestestmodel_compute
_bigtab
_binomial2bernoulli
_binperfect
_binperfout
_biplotmat
_biplotmat_10
_brr_sum
_bs_check
_bs_display
_bs_sum
_btcmd
_byoptnotallowed
_ca_process_mlabel
_callerr
_canon
_cassert
_cci
_censobs_header
_censobs_limits
_check4gropts
_check_dots
_check_e_margins
_check_e_margins_mark
_check_e_rc
_check_eformopt
_check_lrmodel
_check_numeric_vtype
_check_omit
_check_ts_gaps
_checkpd
_chowtest
_ci_check_param
_ckirfset
_cknotsvaroi
_ckvec
_clsarr2list
_cmdxel
_coef_table
_coef_table_header
_confirm_date
_confirm_number_or_date
_copy_mat_stripes
_cpmatnm
_crc2use
_crc4fld
_crcacnt
_crcar1
_crcause
_crcbin
_crcbygr
_crcchi2
_crcchkw
_crceprs
_crcgldv
_crcglil
_crcird
_crcirr
_crcmeq
_crcnuse
_crcor
_crcphdr
_crcra
_crcrd
_crcrr
_crcseq
_crcshdr
_crcslbl
_crcsrvc
_crcswxx
_crcunab
_crcunit
_crcvarl
_crcwsrv
_crczsku
_cvar
_datasig
_datasign
_datasigna
_datasignat
_datasignatu
_datasignatur
_datasignature
_date2elapsed
_diag2mat
_dif_check01
_diparm
_diparm_8
_dlg_tools_wrk
_dm_create
_dots
_dvech_estat
_dvech_falast
_e2r
_eform_multeq_note
_egennoby
_eintreg_get_scores
_eoprobit_get_initvals
_eoprobit_initci
_epitab_by_parse
_eprobit_asf
_eprobit_get_initvals
_eprobit_get_scores
_eprobit_getsvpronresid
_eprobit_mean
_eprobit_svgetsigma
_eregress_get_scores
_eregress_mean_constr
_eregress_mean_pr
_eregress_mean_ystar
_ereturn_display
_erm_censobs_table
_erm_endog_parse
_erm_entreat_parse
_erm_entreat_parse_oprobit
_erm_extreat_parse
_erm_extreat_parse_oprobit
_erm_get_initvals_rec
_erm_intreg_getsv
_erm_oprobit_getsv
_erm_parse_equation
_erm_parse_equation_noeq
_erm_probit_getsv
_erm_ranking_dvlist
_erm_regress_getsv
_erm_select_parse
_erm_teffects
_erm_teffects_pred_legend
_erm_treat_parse
_erm_tselect_parse
_esize_calculations
_est
_estat_acplot
_estat_aroots
_estat_aroots_w2
_estat_icc
_estat_moran
_esti
_estim
_estima
_estimat
_estimate
_estimates
_eststo
_etregress_2_gmm
_etregress_gmm
_etregress_pre
_evlist
_exactreg_coef
_exactreg_lf
_exactreg_p
_exactreg_replay
_exactreg_replayse
_exactreg_sort
_exactreg_tests
_exp_list_expand
_exp_list_parse
_favor_parse
_find_tsops
_findhlpalias
_float2binary
_fr_area_parse_and_log
_fr_aspect_parse_and_log
_fr_clegend_parse_and_log
_fr_declare_date_line
_fr_draw_rect
_fr_droplines_draw
_fr_erasearr
_fr_legend_parse_and_log
_fr_merged_implicit
_fr_runlog
_fr_sztextbox_parse_and_log
_fr_tbstyle_parse_and_log
_fr_tedits_parse_and_log
_fr_textbox_parse_and_log
_fr_title_parse_and_log
_fr_x_log_cleanup
_fr_x_log_create
_fr_zyx2legend_parse_and_log
_fracpp
_fractional_estimates
_fracxo
_freduse
_freduse2
_fredweb
_frr_sztextbox_pnl
_fv_check_depvar
_gadjl
_gadju
_gany
_ganycount
_ganymatch
_ganyvalue
_gaxis
_gbase
_gbom
_gbomd
_gclsst
_gconcat
_gconcat12
_gcorr
_gcount
_gcut
_gd2
_gdayofyear
_gdecimal
_gdensity
_gdhms
_gdiff
_gegroup
_gelap
_gelap2
_gends
_geom
_geomd
_geqany
_get_diopts
_get_diparmopts
_get_diparmopts_8
_get_eformopts
_get_eqspec
_get_gropts
_get_hmat
_get_irf
_get_lb_ub
_get_mcompare
_get_mlogit_bv
_get_mlogit_bvecv
_get_offopt
_getbv
_getcovcorr
_getfilename
_getmlogitcoef
_getnewlabelname
_getrhs
_getvarcns
_getxel
_getxel2
_gewma
_gfill
_gfilter
_gfilter7
_gfirst
_gfoy
_ggmean
_ggroup
_ggroup2
_ghmean
_ghmm
_ghmmss
_ghms
_gifirst
_gilast
_gincss
_giqr
_giso3166
_gkurt
_glastnm
_glgroup
_gm_dlg_edits
_gm_edit
_gm_log
_gm_logadd_in
_gm_splitlog
_gma
_gmad
_gmax
_gmdev
_gmean
_gmedian
_gmin
_gminutes
_gmixnorm
_gmlabvpos
_gmode
_gmode10
_gmsub
_gmtr
_gncyear
_gneqany
_gnmiss
_gnoccur
_gnss
_gntos
_gnvals
_gnwords
_goutside
_gpc
_gpctile
_gr_applytrans
_gr_arrowhead
_gr_atomize_styles
_gr_common_axes
_gr_drawrect
_gr_linkstyles
_gr_symbol_of
_grall
_grank
_grany
_grcount
_grecord
_grepeat
_grfirst
_gridit
_grlast
_grmax
_grmean
_grmin
_grmiss
_grndint
_grndsub
_grobs
_growfirst
_growlast
_growmax
_growmean
_growmedian
_growmin
_growmiss
_grownonmiss
_grownvals
_growpctile
_growsd
_growsvals
_growtotal
_grsd
_grsum
_grsum2
_gs_addgrname
_gs_by_combine
_gs_bygraph
_gs_byopts_combine
_gs_clean_graphlist
_gs_default_bands
_gs_islivefile
_gs_parse_and_log_axoptions
_gs_parse_and_log_axtitle
_gs_parse_and_log_lines
_gs_parse_and_log_tickset
_gs_path2memname
_gs_rdfilehdr
_gs_rec_rdfilehdr
_gs_rec_wrfilehdr
_gs_rtmostofclass
_gs_wrfilehdr
_gs_x_create
_gsd
_gseconds
_gsem_eret_sd
_gsem_ret_sd
_gsemean
_gseq
_gsieve
_gskew
_gstd
_gston
_gsum
_gsumoth
_gtag
_gtod
_gtotal
_gtotal0
_gtruncdig
_gvar
_gwordof
_gwpctile
_gwtfreq
_gwtmean
_gxtile
_hadamard_verify
_hw_comp
_hw_opt_d0
_hwsa_comp
_hwsa_opt_d0
_hwsm_comp
_hwsm_opt_d0
_irf_ops
_irtrsm_check
_irtrsm_one
_isfit
_iv__treat2
_iv__treat3
_iv__treat4
_iv__treat5
_iv_parse
_ivpoisson_add
_ivpoisson_cmult
_ivpoisson_cmult_scale
_ivpoisson_mult
_ivreg_project
_jk_nlegend
_jk_pseudo
_jk_sum
_kdens
_labels2eqnames
_labels2names
_linemax
_loop_brr
_loop_bs
_loop_jknife
_loop_jknife_fw
_loop_jknife_iw
_loop_rw
_lrtest7
_lrtest_note_me
_lrtest_note_xt
_m2matrix
_m2scalar
_make_constraints
_marg_compute
_marg_dydx_ccompute
_marg_dydx_ccompute_cr
_marg_dydx_dcompute
_marg_report
_marg_repost
_marg_save
_margins_npregress
_massert
_mat_clean_coleq
_mat_fill0
_mat_mult_arma
_matplot
_matrix_cmds
_matrix_table
_matsort
_max_to_opt
_mcmc_batchnote
_mcmc_blocksummary
_mcmc_definename
_mcmc_diparams
_mcmc_distr
_mcmc_expand_paramlist
_mcmc_expr
_mcmc_fv_decode
_mcmc_mcsefailnote
_mcmc_model
_mcmc_paramnotallowed
_mcmc_paramnotfound
_mcmc_parmlist
_mcmc_parse
_mcmc_parse_comma
_mcmc_read_simdata
_mcmc_report
_mcmc_run
_mcmc_scan_identmats
_mcmc_show_params
_mcmc_table
_mdisplay
_me_chk_opts
_me_der
_me_der2
_me_derb
_me_derd
_me_display
_me_estimate
_me_group_table
_me_l_der
_me_l_der2
_me_parse
_mfrmvec
_mgarch_ccc_estat
_mgarch_dcc_estat
_mgarch_dvech_estat
_mgarch_p_names
_mgarch_util
_mgarch_vcc_estat
_mixed_ddf
_mixed_ddf_test
_mixed_ddf_u
_mixed_fixupconstant
_mixed_parsecmd
_mixed_parseifin
_mixed_rmcollevel
_mixed_setsublevels
_mixed_wcorr
_mka2
_mkcross
_mkg
_mkkmn
_mksigma
_mkvec
_ms_at_parse
_ms_balance
_ms_build_info
_ms_display
_ms_dydx_parse
_ms_dzb_dfv
_ms_element_info
_ms_empty_info
_ms_eq_display
_ms_eq_info
_ms_extract_varlist
_ms_findomitted
_ms_lf_info
_ms_modify
_ms_omit_info
_ms_op_info
_ms_parse_parts
_ms_put_omit
_ms_split
_ms_to_vl
_ms_unab
_mswitch
_mswitch_output
_mswitch_p
_mswitch_print
_mtest
_mult_makecns
_multiplemat_tab
_multirecordcheck
_mvec
_mvtsheadr
_natscale
_nlogit
_nlogit_p
_no_estat
_no_predict
_nobinary
_nobs
_nostrl
_oaxaca9
_on_colon_parse
_parmlist
_parse
_parse_covmat
_parse_gmm_optim_opts
_parse_igmm_options
_parse_ignore
_parse_initial
_parse_optexp
_parse_optimize_options
_parse_sexp
_parse_sexp_deriv
_parse_sexp_matrix_form
_parse_terms
_parsememsize
_parsewt
_path_noopts
_pctile
_peabbv
_pebase
_pecats
_pecats2
_peciboot
_pecidelta
_peciml
_pecmdcheck
_pecollect
_pedum
_peife
_pemarg
_penocon
_pepred
_perhs
_pesum
_petrap
_peunvec
_pexstring
_pk_p
_plotpos
_post_vce_rank
_power_st_getfailprob
_pred_me
_pred_missings
_pred_rules
_pred_se
_pred_se_ic
_predict
_prefix_buildinfo
_prefix_check4esample
_prefix_checkopt
_prefix_clear
_prefix_command
_prefix_depvarblocklist
_prefix_display
_prefix_expand
_prefix_explist
_prefix_footnote
_prefix_fvlabel
_prefix_getchars
_prefix_getinfo
_prefix_getmat
_prefix_legend
_prefix_model_test
_prefix_nonoption
_prefix_note
_prefix_reject
_prefix_relabel_eqns
_prefix_replay
_prefix_run_error
_prefix_saving
_prefix_title
_prefix_validate
_prefix_varblocklist
_prefix_vcenotallowed
_pss_chk_fpc
_pss_chk_init
_pss_chk_iteropts
_pss_chk_matrix
_pss_chk_matspec
_pss_chk_multilist
_pss_chk_multisample
_pss_chk_tableopts
_pss_chk_testmainopts
_pss_error
_pss_graph
_pss_pairedpr_parseeffect
_pss_syntax
_pss_twoprop_parseeffect
_qreg
_qregwls
_qsort_index
_qsur
_query
_query_metadata
_r2e
_recast
_rename
_repost
_resample_warn
_restore_labels
_return
_returnclear
_rmcoll
_rmcoll2list
_rmcollright
_rmcollright_10
_rmdcoll
_rob_calw
_rob_genid
_rob_genw
_robust
_robust2
_robust3
_roccom1
_roccom1_8
_rocsen
_rotate_clear
_rotate_text
_sassert
_savingopt_parse
_sbchkvars
_score_spec
_sdr_sum
_sep_varsylags
_set_irf_vars
_shortenpath
_sigfm
_small2dotz
_sp_build_fv_info
_sp_check_lag_list
_sp_estat_summarize
_sp_parse_force
_sp_update_lag_list
_sp_xtstrbal
_spivreg
_spivreg_ereturn
_spivreg_estat
_spivreg_impact
_spivreg_init_coef
_spivreg_p
_spivreg_parse
_spivreg_rebuild_model
_spmatrix_subset
_spreg_common_parse
_spreg_gs2sls
_spreg_match_id
_spreg_ml
_spreg_ml_estat
_spreg_ml_parse
_spreg_mlopts
_spreg_pseudor2
_spreg_sample_message
_spregress_gs2sls
_spregress_ml
_spreservetest
_spxtreg_common_parse
_spxtreg_estat
_spxtreg_get_splag
_spxtreg_impact
_spxtreg_match_id
_spxtreg_p
_spxtreg_pseudor2
_spxtreg_sample_message
_sspace_covstructure_parse
_sspace_epost
_sspace_equation_order
_sspace_estat
_sspace_p
_st_err_sharedgaps
_stata_internalerror
_staticfc
_stcurv
_stpower
_stpower_gethr
_stpower_gethr_log
_stpower_getrate
_strip_labels
_stteffects_censor_init
_stteffects_check_overlap
_stteffects_concat_matrices
_stteffects_error_msg
_stteffects_estimate
_stteffects_exponential_moments
_stteffects_from
_stteffects_gamma
_stteffects_gamma_moments
_stteffects_gamma_p
_stteffects_gmm_censor
_stteffects_gmm_dcensor
_stteffects_gmm_ipwra
_stteffects_gmm_ps
_stteffects_gmm_scale_dome
_stteffects_gmm_surv
_stteffects_gmm_var
_stteffects_gmm_wra
_stteffects_ipw
_stteffects_ipwra
_stteffects_ipwra_gmm
_stteffects_ipwra_init
_stteffects_lnormal_moments
_stteffects_ml_gamma
_stteffects_ome_gmm
_stteffects_parse_stvarlist
_stteffects_pom_gmm
_stteffects_ra
_stteffects_replay
_stteffects_split_vlist
_stteffects_surv_init
_stteffects_weibull_moments
_stteffects_wra
_stteffects_wra_init
_sttrend
_stubstar2names
_sum_table
_sumaccum
_sunflower_binar
_svar_cnsmac
_svar_eqmac
_svar_newcns
_svar_post
_svard2
_svariden
_svaridenlr
_svarlrd2
_svd
_svy2
_svy_bs
_svy_bs_sum
_svy_check_cmdopts
_svy_check_group
_svy_check_nested
_svy_check_postw
_svy_check_stset
_svy_check_vce
_svy_fpc_note
_svy_ftest
_svy_gof_hl
_svy_ivreg_first
_svy_mkdeff
_svy_mkmeff
_svy_mkvmsp
_svy_mkvsrs
_svy_newrule
_svy_setup
_svy_singleton_note
_svy_subpop
_svy_subpop_note
_svy_summarize
_svy_summarize_legend
_svy_tabulate
_svycal_residuals
_svydes_dlg
_svylc
_svyset
_sw_ood
_tebalance_boxplot
_tebalance_cmd_generate
_tebalance_density
_tebalance_overid
_tebalance_overid_logit
_tebalance_overid_probit
_tebalance_stackvar
_tebalance_summarize
_tebalance_weights
_teffects_aipw
_teffects_count_obs
_teffects_error_msg
_teffects_estat_summarize
_teffects_from
_teffects_getstat1
_teffects_gmm_aipw
_teffects_gmm_ipw
_teffects_gmm_ipw_hetprobit
_teffects_gmm_ipw_mlogit
_teffects_gmm_ipwra
_teffects_gmm_ra
_teffects_gmmopts
_teffects_ipw
_teffects_ipw_gmm
_teffects_ipw_init
_teffects_ipw_p
_teffects_ipwra
_teffects_ipwra_bv
_teffects_ipwra_gmm
_teffects_ipwra_p
_teffects_label2value
_teffects_match_p
_teffects_nnmatch
_teffects_omit_vars
_teffects_options
_teffects_overlap
_teffects_parse_canonicalize
_teffects_parse_dvarlist
_teffects_parse_generate
_teffects_parse_tvar
_teffects_parse_tvarlist
_teffects_psmatch
_teffects_ra
_teffects_ra_gmm
_teffects_ra_init
_teffects_ra_p
_teffects_replay
_teffects_replaym
_teffects_validate_catvar
_teffects_validate_overlap
_teffects_vlist_exclusive
_teffects_vlist_exclusive2
_threshold
_threshold_p
_threshold_print
_tknz
_ts
_ts_dexp
_ts_exp
_ts_hw
_ts_hwsa
_ts_hwsm
_tsheadr
_tsinchk
_tsma
_tsnatscale
_ttest
_ttest1
_ttest2
_tutends
_tvc_notallowed
_unab
_unicode_convertfile
_var_mka
_varbsf
_vardisprmse
_varfcast
_varfcast_clear
_varfcast_fcast
_varfcast_graph
_varirf
_varsim
_vassert
_vce_cluster
_vce_parse
_vce_parserun
_vec_ckgraph
_vec_dreduced
_vec_grcroots
_vec_opck
_vec_pgparse
_vec_pgridplots
_vec_postvar
_vecauxdisp
_vecfcast_compute
_vecfcast_compute_w
_vecgetacns
_vecgetcv
_vecgtn
_vecmka
_vecmkapvp
_vecmkce
_vecmkgam
_vecmksi
_vecmktrend
_vecortho
_vecpclean
_vectparse
_vecu
_view_helper
_virf_add
_virf_char
_virf_fck
_virf_mknewfile
_virf_nlen
_virf_use
_writenum
_xeq_esthold
_xeq_esthold_err
_xt
_xt_check_cns
_xt_robust
_xtab_parser
_xtabond9
_xtcmd_p
_xtcoint_parse_kernel
_xtdpd_xtfod
_xtme_display
_xtme_estat
_xtme_estatsd
_xtme_estimate
_xtme_p
_xtmixed_display
_xtmixed_estimate
_xtordinal
_xtordinal_display
_xtreg_chk_cl
_xtreg_chk_cl2
_xtstrbal
_xtur_getic
_xtur_parse_kernel
_xtur_parse_lags
_xturadfreg
_xturbreitung
_xturdemean
_xturfisher
_xturhadri
_xturht
_xturips
_xturllc
aaplot
about
abspath
ac
ac_7
acprplot
acprplot_7
actest
actest9
adjust
ado
adoedit
adopath
adoupdate
agg_acronym
alpha
ameans
an
ano
anov
anova
anova_estat
anova_terms
anovadef
aorder
ap
app
appe
appen