|
717 | 717 | (defn pdf-chisq
|
718 | 718 | "
|
719 | 719 | 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. |
721 | 721 |
|
722 | 722 | Options:
|
723 | 723 | :df (default 1)
|
|
744 | 744 | (defn cdf-chisq
|
745 | 745 | "
|
746 | 746 | 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. |
748 | 748 |
|
749 | 749 | Options:
|
750 | 750 | :df (default 1)
|
|
775 | 775 | (defn sample-chisq
|
776 | 776 | "
|
777 | 777 | 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. |
779 | 779 |
|
780 | 780 | Options:
|
781 | 781 | :df (default 1)
|
|
804 | 804 | (defn pdf-t
|
805 | 805 | "
|
806 | 806 | 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. |
808 | 808 |
|
809 | 809 | Options:
|
810 | 810 | :df (default 1)
|
|
830 | 830 | (defn cdf-t
|
831 | 831 | "
|
832 | 832 | 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. |
834 | 834 |
|
835 | 835 | Options:
|
836 | 836 | :df (default 1)
|
|
897 | 897 | (defn sample-t
|
898 | 898 | "
|
899 | 899 | 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. |
901 | 901 |
|
902 | 902 | Options:
|
903 | 903 | :df (default 1)
|
|
928 | 928 | (defn pdf-exp
|
929 | 929 | "
|
930 | 930 | 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. |
932 | 932 |
|
933 | 933 | Options:
|
934 | 934 | :rate (default 1)
|
|
954 | 954 | (defn cdf-exp
|
955 | 955 | "
|
956 | 956 | 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. |
958 | 958 |
|
959 | 959 | Options:
|
960 | 960 | :rate (default 1)
|
|
980 | 980 | (defn sample-exp
|
981 | 981 | "
|
982 | 982 | Returns a sample of the given size from a Exponential distribution.
|
983 |
| - Same as R's rexp |
| 983 | + Equivalent to R's rexp. |
984 | 984 |
|
985 | 985 | Options:
|
986 | 986 | :rate (default 1)
|
|
1123 | 1123 | (defn pdf-binomial
|
1124 | 1124 | "
|
1125 | 1125 | 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. |
1127 | 1127 |
|
1128 | 1128 | Options:
|
1129 | 1129 | :size (default 1)
|
|
1151 | 1151 | (defn cdf-binomial
|
1152 | 1152 | "
|
1153 | 1153 | 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. |
1155 | 1155 |
|
1156 | 1156 | Options:
|
1157 | 1157 | :size (default 1)
|
|
1182 | 1182 | (defn sample-binomial
|
1183 | 1183 | "
|
1184 | 1184 | Returns a sample of the given size from a Binomial distribution.
|
1185 |
| - Same as R's rbinom |
| 1185 | + Equivalent to R's rbinom. |
1186 | 1186 |
|
1187 | 1187 | Options:
|
1188 | 1188 | :size (default 1)
|
|
1261 | 1261 | (defn pdf-poisson
|
1262 | 1262 | "
|
1263 | 1263 | 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. |
1265 | 1265 |
|
1266 | 1266 | Options:
|
1267 | 1267 | :lambda (default 1)
|
|
1288 | 1288 | (defn cdf-poisson
|
1289 | 1289 | "
|
1290 | 1290 | 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. |
1292 | 1292 |
|
1293 | 1293 | Options:
|
1294 | 1294 | :lambda (default 1)
|
|
1318 | 1318 | (defn sample-poisson
|
1319 | 1319 | "
|
1320 | 1320 | Returns a sample of the given size from a Poisson distribution.
|
1321 |
| - Same as R's rpois |
| 1321 | + Equivalent to R's rpois. |
1322 | 1322 |
|
1323 | 1323 | Options:
|
1324 | 1324 | :lambda (default 1)
|
|
1347 | 1347 | (defn pdf-neg-binomial
|
1348 | 1348 | "
|
1349 | 1349 | 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. |
1351 | 1351 |
|
1352 | 1352 | Options:
|
1353 | 1353 | :size (default 10)
|
|
1376 | 1376 | (defn cdf-neg-binomial
|
1377 | 1377 | "
|
1378 | 1378 | 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. |
1380 | 1380 |
|
1381 | 1381 | Options:
|
1382 | 1382 | :size (default 10)
|
|
1407 | 1407 | (defn sample-neg-binomial
|
1408 | 1408 | "
|
1409 | 1409 | Returns a sample of the given size from a Negative Binomial distribution.
|
1410 |
| - Same as R's rnbinom |
| 1410 | + Equivalent to R's rnbinom. |
1411 | 1411 |
|
1412 | 1412 | Options:
|
1413 | 1413 | :size (default 10)
|
|
0 commit comments