측정 이론 측면에서보다 이론적 인 답변 외에도 통계 프로그래밍에서 pmf와 pdf를 구분하지 않는 것이 편리합니다. 예를 들어, R에는 다양한 기본 제공 배포판이 있습니다. 각 분포마다 4 가지 기능이 있습니다. 예를 들어, 정규 분포 (도움말 파일에서)의 경우 :
dnorm gives the density, pnorm gives the distribution function, qnorm gives the quantile function, and rnorm generates random deviates.
R 사용자는 d,p,q,r
접두사 를 빠르게 사용합니다 . 이항 분포 d
와 같은 드롭 앤 드롭 과 같은 것을 사용해야 m
한다면 성 가실 것입니다. 대신 R 사용자가 기대하는 모든 것이 있습니다.
dbinom gives the density, pbinom gives the distribution function, qbinom gives the quantile function and rbinom generates random deviates.