-
Notifications
You must be signed in to change notification settings - Fork 3
/
NAMESPACE
67 lines (67 loc) · 2.2 KB
/
NAMESPACE
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
useDynLib("hermiter", .registration=TRUE)
importFrom(Rcpp, evalCpp)
importFrom(RcppParallel, RcppParallelLibs)
importFrom(stats,quantile)
importFrom(stats,density)
importFrom(stats,median)
importFrom("grDevices", "hcl.colors")
importFrom("graphics", "abline", "filled.contour", "plot.default")
importFrom("methods", "is")
S3method(merge_hermite,list)
S3method(merge_pair,hermite_estimator_univar)
S3method(cum_prob,hermite_estimator_univar)
S3method(hcdf,hermite_estimator_univar)
S3method(dens,hermite_estimator_univar)
S3method(density,hermite_estimator_univar)
S3method(quant,hermite_estimator_univar)
S3method(quantile,hermite_estimator_univar)
S3method(median,hermite_estimator_univar)
S3method(IQR,hermite_estimator_univar)
S3method(IQR,default)
S3method(quant,hermite_estimator_bivar)
S3method(calculate_running_std,hermite_estimator_univar)
S3method(calculate_running_std,hermite_estimator_bivar)
S3method(update_sequential,hermite_estimator_univar)
S3method(spearmans,hermite_estimator_bivar)
S3method(kendall,hermite_estimator_bivar)
S3method(spearmans,hermite_estimator_univar)
S3method(kendall,hermite_estimator_univar)
S3method(cum_prob,hermite_estimator_bivar)
S3method(hcdf,hermite_estimator_bivar)
S3method(dens,hermite_estimator_bivar)
S3method(density,hermite_estimator_bivar)
S3method(update_sequential,hermite_estimator_bivar)
S3method(merge_pair,hermite_estimator_bivar)
S3method(summary,hermite_estimator_univar)
S3method(print,hermite_estimator_univar)
S3method(summary,hermite_estimator_bivar)
S3method(print,hermite_estimator_bivar)
S3method(print,hcdf_univar)
S3method(plot,hcdf_univar)
S3method(summary,hcdf_univar)
S3method(print,hcdf_bivar)
S3method(plot,hcdf_bivar)
S3method(summary,hcdf_bivar)
S3method(print,hdensity_univar)
S3method(plot,hdensity_univar)
S3method(print,hdensity_bivar)
S3method(plot,hdensity_bivar)
export(hermite_estimator)
export(update_sequential)
export(merge_hermite)
export(merge_pair)
export(cum_prob)
export(hcdf)
export(dens)
export(quant)
export(spearmans)
export(kendall)
export(cor)
export(hermite_normalization_N)
export(hermite_function_N)
export(hermite_function_sum_N)
export(hermite_polynomial_N)
export(hermite_int_lower)
export(hermite_int_upper)
export(hermite_int_full)
export(IQR)