Skip to content

Commit 3869182

Browse files
committed
update "Same as R's ..." to "Equivalent to R's ..." for greppable consistency
1 parent d710e5e commit 3869182

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

modules/incanter-core/src/incanter/stats.clj

+18-18
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@
717717
(defn pdf-chisq
718718
"
719719
Returns the Chi Square pdf of the given value of x. It will return a sequence
720-
of values, if x is a sequence. Same as R's dchisq function.
720+
of values, if x is a sequence. Equivalent to R's dchisq function.
721721
722722
Options:
723723
:df (default 1)
@@ -744,7 +744,7 @@
744744
(defn cdf-chisq
745745
"
746746
Returns the Chi Square cdf of the given value of x. It will return a sequence
747-
of values, if x is a sequence. Same as R's pchisq function.
747+
of values, if x is a sequence. Equivalent to R's pchisq function.
748748
749749
Options:
750750
:df (default 1)
@@ -775,7 +775,7 @@
775775
(defn sample-chisq
776776
"
777777
Returns a sample of the given size from a Chi Square distribution
778-
Same as R's rchisq function.
778+
Equivalent to R's rchisq function.
779779
780780
Options:
781781
:df (default 1)
@@ -804,7 +804,7 @@
804804
(defn pdf-t
805805
"
806806
Returns the Student's t pdf for the given value of x. It will return a sequence
807-
of values, if x is a sequence. Same as R's dt function.
807+
of values, if x is a sequence. Equivalent to R's dt function.
808808
809809
Options:
810810
:df (default 1)
@@ -830,7 +830,7 @@
830830
(defn cdf-t
831831
"
832832
Returns the Student's t cdf for the given value of x. It will return a sequence
833-
of values, if x is a sequence. Same as R's pt function.
833+
of values, if x is a sequence. Equivalent to R's pt function.
834834
835835
Options:
836836
:df (default 1)
@@ -897,7 +897,7 @@
897897
(defn sample-t
898898
"
899899
Returns a sample of the given size from a Student's t distribution.
900-
Same as R's rt function.
900+
Equivalent to R's rt function.
901901
902902
Options:
903903
:df (default 1)
@@ -928,7 +928,7 @@
928928
(defn pdf-exp
929929
"
930930
Returns the Exponential pdf of the given value of x. It will return a sequence
931-
of values, if x is a sequence. Same as R's dexp
931+
of values, if x is a sequence. Equivalent to R's dexp.
932932
933933
Options:
934934
:rate (default 1)
@@ -954,7 +954,7 @@
954954
(defn cdf-exp
955955
"
956956
Returns the Exponential cdf of the given value of x. It will return a sequence
957-
of values, if x is a sequence. Same as R's pexp
957+
of values, if x is a sequence. Equivalent to R's pexp.
958958
959959
Options:
960960
:rate (default 1)
@@ -980,7 +980,7 @@
980980
(defn sample-exp
981981
"
982982
Returns a sample of the given size from a Exponential distribution.
983-
Same as R's rexp
983+
Equivalent to R's rexp.
984984
985985
Options:
986986
:rate (default 1)
@@ -1123,7 +1123,7 @@
11231123
(defn pdf-binomial
11241124
"
11251125
Returns the Binomial pdf of the given value of x. It will return a sequence
1126-
of values, if x is a sequence. Same as R's dbinom
1126+
of values, if x is a sequence. Equivalent to R's dbinom.
11271127
11281128
Options:
11291129
:size (default 1)
@@ -1151,7 +1151,7 @@
11511151
(defn cdf-binomial
11521152
"
11531153
Returns the Binomial cdf of the given value of x. It will return a sequence
1154-
of values, if x is a sequence. Same as R's pbinom
1154+
of values, if x is a sequence. Equivalent to R's pbinom.
11551155
11561156
Options:
11571157
:size (default 1)
@@ -1182,7 +1182,7 @@
11821182
(defn sample-binomial
11831183
"
11841184
Returns a sample of the given size from a Binomial distribution.
1185-
Same as R's rbinom
1185+
Equivalent to R's rbinom.
11861186
11871187
Options:
11881188
:size (default 1)
@@ -1261,7 +1261,7 @@
12611261
(defn pdf-poisson
12621262
"
12631263
Returns the Poisson pdf of the given value of x. It will return a sequence
1264-
of values, if x is a sequence. Same as R's dpois
1264+
of values, if x is a sequence. Equivalent to R's dpois.
12651265
12661266
Options:
12671267
:lambda (default 1)
@@ -1288,7 +1288,7 @@
12881288
(defn cdf-poisson
12891289
"
12901290
Returns the Poisson cdf of the given value of x. It will return a sequence
1291-
of values, if x is a sequence. Same as R's ppois
1291+
of values, if x is a sequence. Equivalent R's ppois.
12921292
12931293
Options:
12941294
:lambda (default 1)
@@ -1318,7 +1318,7 @@
13181318
(defn sample-poisson
13191319
"
13201320
Returns a sample of the given size from a Poisson distribution.
1321-
Same as R's rpois
1321+
Equivalent to R's rpois.
13221322
13231323
Options:
13241324
:lambda (default 1)
@@ -1347,7 +1347,7 @@
13471347
(defn pdf-neg-binomial
13481348
"
13491349
Returns the Negative Binomial pdf of the given value of x. It will return a sequence
1350-
of values, if x is a sequence. Same as R's dnbinom
1350+
of values, if x is a sequence. Equivalent to R's dnbinom.
13511351
13521352
Options:
13531353
:size (default 10)
@@ -1376,7 +1376,7 @@
13761376
(defn cdf-neg-binomial
13771377
"
13781378
Returns the Negative Binomial cdf of the given value of x. It will return a sequence
1379-
of values, if x is a sequence. Same as R's dnbinom
1379+
of values, if x is a sequence. Equivalent to R's dnbinom.
13801380
13811381
Options:
13821382
:size (default 10)
@@ -1407,7 +1407,7 @@
14071407
(defn sample-neg-binomial
14081408
"
14091409
Returns a sample of the given size from a Negative Binomial distribution.
1410-
Same as R's rnbinom
1410+
Equivalent to R's rnbinom.
14111411
14121412
Options:
14131413
:size (default 10)

0 commit comments

Comments
 (0)