Edit

SAS:乱数に関するメモ

RAND関数を整理.他の記事と統合

概要

  • Rand 関数
  • 多変量乱数(Simnormal,iml,Cholesky decomposition)

Rand関数


/* Binomoial ranodm variable (0 or 1) following Binomial Distribution w/ p=0.2 */
data test ;
  do i=1 to 1000 ;
    x = rand("BINOMIAL", 0.2, 1) ; 
    output ;
  end ;
run ;




多変量正規分布







Search This Blog