-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDESCRIPTION
86 lines (86 loc) · 2.14 KB
/
DESCRIPTION
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
Package: pdqr
Title: Work with Custom Distribution Functions
Version: 0.3.1.9000
Authors@R:
person(given = "Evgeni",
family = "Chasnovski",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-1617-4019"))
Description: Create, transform, and summarize custom random
variables with distribution functions (analogues of 'p*()', 'd*()',
'q*()', and 'r*()' functions from base R). Two types of distributions
are supported: "discrete" (random variable has finite number of output
values) and "continuous" (infinite number of values in the form of
continuous random variable). Functions for distribution
transformations and summaries are available. Implemented approaches
often emphasize approximate and numerical solutions: all distributions
assume finite support and finite values of density function; some
methods implemented with simulation techniques.
License: MIT + file LICENSE
URL: https://github.com/echasnovski/pdqr,
https://echasnovski.github.io/pdqr/
BugReports: https://github.com/echasnovski/pdqr/issues
Depends:
R (>= 3.3)
Imports:
graphics,
grDevices,
stats
Suggests:
covr,
knitr,
pillar,
rmarkdown,
spelling,
testthat,
vdiffr
VignetteBuilder:
knitr
Encoding: UTF-8
Language: en-US
Roxygen: list(markdown = TRUE, old_usage = TRUE)
RoxygenNote: 7.2.3
Collate:
'as_p.R'
'as_d.R'
'as_q.R'
'as_r.R'
'assertions.R'
'form-compare.R'
'form-other.R'
'form_regrid.R'
'form_resupport.R'
'form_retype.R'
'form_tails.R'
'form_trans.R'
'group-generics.R'
'meta.R'
'print.R'
'new_p.R'
'new_d.R'
'new_q.R'
'new_r.R'
'pdqr-package.R'
'plot.R'
'region.R'
'summ-other.R'
'summ_center.R'
'summ_classmetric.R'
'summ_distance.R'
'summ_entropy.R'
'summ_hdr.R'
'summ_interval.R'
'summ_moment.R'
'summ_order.R'
'summ_pval.R'
'summ_roc.R'
'summ_separation.R'
'summ_spread.R'
'utils-as.R'
'utils-form.R'
'utils-new.R'
'utils-summ.R'
'utils.R'
'x_tbl.R'
'zzz.R'