Circular Distributions
circularuniform_gen
Bases: rv_continuous
Continuous Circular Uniform Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, *args, **kwargs)
Probability density function of the Circular Uniform distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
cdf(x, *args, **kwargs)
Cumulative distribution function of the Circular Uniform distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the cumulative distribution function. |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
Cumulative distribution function evaluated at |
Source code in pycircstat2/distributions.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
ppf(q, *args, **kwargs)
Percent-point function (inverse of the CDF) of the Circular Uniform distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
q
|
array_like
|
Quantiles to evaluate. |
required |
Returns:
Name | Type | Description |
---|---|---|
ppf_values |
array_like
|
Values at the given quantiles. |
Source code in pycircstat2/distributions.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
cardioid_gen
Bases: rv_continuous
Cardioid (cosine) Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Notes
Implementation based on Section 4.3.4 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, mu, rho, *args, **kwargs)
Probability density function of the Cardioid distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Mean resultant length, 0 <= rho <= 0.5. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
|
cdf(x, mu, rho, *args, **kwargs)
Cumulative distribution function of the Cardioid distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the cumulative distribution function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Mean resultant length, 0 <= rho <= 0.5. |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
Cumulative distribution function evaluated at |
Source code in pycircstat2/distributions.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
cartwright_gen
Bases: rv_continuous
Cartwright's Power-of-Cosine Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation based on Section 4.3.5 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, mu, zeta, *args, **kwargs)
Probability density function of the Cartwright distribution.
, where \(\Gamma\) is the gamma function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
zeta
|
float
|
Shape parameter, zeta > 0. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
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 |
|
cdf(x, mu, zeta, *args, **kwargs)
Cumulative distribution function of the Cartwright distribution.
No closed-form solution is available, so the CDF is computed numerically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the cumulative distribution function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
zeta
|
float
|
Shape parameter, zeta > 0. |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
Cumulative distribution function evaluated at |
Source code in pycircstat2/distributions.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
wrapnorm_gen
Bases: rv_continuous
Wrapped Normal Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Examples:
from pycircstat2.distributions import wrapnorm
Notes
Implementation based on Section 4.3.7 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, mu, rho, *args, **kwargs)
Probability density function of the Wrapped Normal distribution.
, here we approximate the infinite sum by summing the first 30 terms.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Shape parameter, 0 < rho <= 1. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
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 |
|
cdf(x, mu, rho, *args, **kwargs)
Cumulative distribution function of the Wrapped Normal distribution.
No closed-form solution is available, so the CDF is computed numerically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the cumulative distribution function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Shape parameter, 0 < rho <= 1. |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
Cumulative distribution function evaluated at |
Source code in pycircstat2/distributions.py
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
wrapcauchy_gen
Bases: rv_continuous
Wrapped Cauchy Distribution.
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
rvs |
Random variates. |
fit |
Fit the distribution to the data and return the parameters (mu, rho). |
Notes
Implementation based on Section 4.3.6 of Pewsey et al. (2014).
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, mu, rho, *args, **kwargs)
Probability density function of the Wrapped Cauchy distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Shape parameter, 0 < rho <= 1. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
|
logpdf(x, mu, rho, *args, **kwargs)
Logarithm of the probability density function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the log-PDF. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Mean resultant length, 0 < rho <= 1. |
required |
Returns:
Name | Type | Description |
---|---|---|
logpdf_values |
array_like
|
Logarithm of the probability density function evaluated at |
Source code in pycircstat2/distributions.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
|
cdf(x, mu, rho, *args, **kwargs)
Cumulative distribution function of the Wrapped Cauchy distribution.
No closed-form solution is available, so the CDF is computed numerically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the CDF. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
rho
|
float
|
Shape parameter, 0 < rho <= 1. |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
CDF evaluated at |
Source code in pycircstat2/distributions.py
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
|
fit(data, method='analytical', *args, **kwargs)
Fit the Wrapped Cauchy distribution to the data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
array_like
|
Input data (angles in radians). |
required |
method
|
str
|
The approach for fitting the distribution. Options are:
- "analytical": Compute |
'analytical'
|
*args
|
Additional arguments passed to the optimizer (if used). |
()
|
|
**kwargs
|
Additional arguments passed to the optimizer (if used). |
()
|
Returns:
Name | Type | Description |
---|---|---|
rho |
float
|
Estimated shape parameter. |
mu |
float
|
Estimated mean direction. |
Source code in pycircstat2/distributions.py
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 |
|
vonmises_gen
Bases: rv_continuous
Von Mises Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
ppf |
Percent-point function (inverse of CDF). |
rvs |
Random variates. |
fit |
Fit the distribution to the data and return the parameters (mu, kappa). |
Examples:
from pycircstat2.distributions import vonmises
References
- Section 4.3.8 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
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 |
|
pdf(x, mu, kappa, *args, **kwargs)
Probability density function of the Von Mises distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
The mean direction of the distribution (0 <= mu <= 2*pi). |
required |
kappa
|
float
|
The concentration parameter of the distribution (kappa > 0). |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
|
logpdf(x, mu, kappa, *args, **kwargs)
Logarithm of the probability density function of the Von Mises distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the logarithm of the probability density function. |
required |
mu
|
float
|
The mean direction of the distribution (0 <= mu <= 2*pi). |
required |
kappa
|
float
|
The concentration parameter of the distribution (kappa > 0). |
required |
Returns:
Name | Type | Description |
---|---|---|
logpdf_values |
array_like
|
Logarithm of the probability density function evaluated at |
Source code in pycircstat2/distributions.py
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
|
cdf(x, mu, kappa, *args, **kwargs)
Cumulative distribution function of the Von Mises distribution.
No closed-form solution is available, so the CDF is computed numerically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the cumulative distribution function. |
required |
mu
|
float
|
The mean direction of the distribution (0 <= mu <= 2*pi). |
required |
kappa
|
float
|
The concentration parameter of the distribution (kappa > 0). |
required |
Returns:
Name | Type | Description |
---|---|---|
cdf_values |
array_like
|
Cumulative distribution function evaluated at |
Source code in pycircstat2/distributions.py
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 |
|
ppf(q, mu, kappa, *args, **kwargs)
Percent-point function (inverse of the CDF) of the Von Mises distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
q
|
array_like
|
Quantiles to evaluate. |
required |
mu
|
float
|
The mean direction of the distribution (0 <= mu <= 2*pi). |
required |
kappa
|
float
|
The concentration parameter of the distribution (kappa > 0). |
required |
Returns:
Name | Type | Description |
---|---|---|
ppf_values |
array_like
|
Values at the given quantiles. |
Source code in pycircstat2/distributions.py
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 |
|
rvs(size=None, random_state=None, *args, **kwargs)
Draw random variates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
size
|
int or tuple
|
Number of samples to generate. |
None
|
random_state
|
RandomState
|
Random number generator instance. |
None
|
Returns:
Name | Type | Description |
---|---|---|
samples |
ndarray
|
Random variates. |
Source code in pycircstat2/distributions.py
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 |
|
mean(*args, **kwargs)
Circular mean of the Von Mises distribution.
Returns:
Name | Type | Description |
---|---|---|
mean |
float
|
The circular mean direction (in radians), equal to |
Source code in pycircstat2/distributions.py
818 819 820 821 822 823 824 825 826 827 828 |
|
median(*args, **kwargs)
Circular median of the Von Mises distribution.
Returns:
Name | Type | Description |
---|---|---|
median |
float
|
The circular median direction (in radians), equal to |
Source code in pycircstat2/distributions.py
830 831 832 833 834 835 836 837 838 839 |
|
var(*args, **kwargs)
Circular variance of the Von Mises distribution.
Returns:
Name | Type | Description |
---|---|---|
variance |
float
|
The circular variance, derived from |
Source code in pycircstat2/distributions.py
841 842 843 844 845 846 847 848 849 850 851 |
|
std(*args, **kwargs)
Circular standard deviation of the Von Mises distribution.
Returns:
Name | Type | Description |
---|---|---|
std |
float
|
The circular standard deviation, derived from |
Source code in pycircstat2/distributions.py
853 854 855 856 857 858 859 860 861 862 863 864 865 |
|
entropy(*args, **kwargs)
Entropy of the Von Mises distribution.
Returns:
Name | Type | Description |
---|---|---|
entropy |
float
|
The entropy of the distribution. |
Source code in pycircstat2/distributions.py
867 868 869 870 871 872 873 874 875 876 877 |
|
fit(data, method='analytical', *args, **kwargs)
Fit the Von Mises distribution to the given data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
array_like
|
The data to fit the distribution to. Assumes values are in radians. |
required |
method
|
str
|
The approach for fitting the distribution. Options are:
- "analytical": Compute When |
'analytical'
|
*args
|
tuple
|
Additional positional arguments passed to the optimizer (if used). |
()
|
**kwargs
|
dict
|
Additional keyword arguments passed to the optimizer (if used). |
{}
|
Returns:
Name | Type | Description |
---|---|---|
kappa |
float
|
The estimated concentration parameter of the Von Mises distribution. |
mu |
float
|
The estimated mean direction of the Von Mises distribution. |
Notes
- The "analytical" method directly computes the parameters using the circular mean
and resultant vector length (
r
) formu
andkappa
, respectively. - For numerical methods, the negative log-likelihood (NLL) is minimized using
_nnlf
as the objective function.
Examples:
# MLE fitting using analytical solution
mu, kappa = vonmises.fit(data, method="analytical")
# MLE fitting with numerical method using L-BFGS-B
mu, kappa = vonmises.fit(data, method="L-BFGS-B")
Source code in pycircstat2/distributions.py
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 |
|
jonespewsey_gen
Bases: rv_continuous
Jones-Pewsey Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation based on Section 4.3.9 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 |
|
pdf(x, mu, kappa, psi, *args, **kwargs)
Probability density function of the Jones-Pewsey distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
array_like
|
Points at which to evaluate the probability density function. |
required |
mu
|
float
|
Mean direction, 0 <= mu <= 2*pi. |
required |
kappa
|
float
|
Concentration parameter, kappa >= 0. |
required |
psi
|
float
|
Skewness parameter, -∞ <= psi <= ∞. |
required |
Returns:
Name | Type | Description |
---|---|---|
pdf_values |
array_like
|
Probability density function evaluated at |
Source code in pycircstat2/distributions.py
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 |
|
vonmises_ext_gen
Bases: rv_continuous
Flat-topped von Mises Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation based on Section 4.3.10 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 |
|
jonespewsey_sineskewed_gen
Bases: rv_continuous
Sine-Skewed Jones-Pewsey Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation based on Section 4.3.11 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 |
|
jonespewsey_asymext_gen
Bases: rv_continuous
Asymmetric Extended Jones-Pewsey Distribution
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation from 4.3.12 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 |
|
inverse_batschelet_gen
Bases: rv_continuous
Inverse Batschelet distribution.
Methods:
Name | Description |
---|---|
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
Note
Implementation from 4.3.13 of Pewsey et al. (2014)
Source code in pycircstat2/distributions.py
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 |
|