由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请问SAS怎么用do loop生成随机数字?
相关主题
怎样生成离散分布的随机数啊?有直接的方法吗,比如像randn()这样的函数问两个简单的sample的问题
test count data distribution in SASsample distribution的理解
在R里怎么跳到指定的地方?[合集] 请教:如何在iml里生成有条件的随机数?
[合集] SAS的问题电话面试,对方要求SAS code samples
SAS sampling Distribution的实现请教一个问题:y= min (x1, x2,..,xn) 的概率分布,where x1, ..., xn is Poisson distribution
请问SAS里面有没有类似R里面的sample之类的抽样函数?如果没有怎样实现呢如何确定data是normal distribution or Poisson
Ask a question about one sample test关于‘’Probability‘’ 的定义的问题,外行请教
请教SAS高手关于lasso...如果用循环对一个MACRO调用100次?
相关话题的讨论汇总
话题: seed话题: loops话题: do话题: poisson
进入Statistics版参与讨论
1 (共1页)
c********q
发帖数: 18
1
如题,
Finding the sampling distribution of a Poisson distribution. Using do-loops,
generate 20 samples of size n= 15 from a Poisson Distribution (ranpoi) with
a mean of 3. Use the computer clock as the seed number. Find the mean of
each of your samples. (You don't have to show me this values)
用do-loops生成20组随机数,每组15个数字,并且符合柏松分布,mean=3
另外seed用电脑的时间
试了半天不知道怎么分组?
望解答。。
H********8
发帖数: 1
2
%macro play;
%do i=1 %to 3;
data poi&i;
do j = 1 to 15;
seed=int(time());
values=ranpoi(seed, 3);
output;
end;
drop seed j;
run;
%end;
%mend;

loops,
with

【在 c********q 的大作中提到】
: 如题,
: Finding the sampling distribution of a Poisson distribution. Using do-loops,
: generate 20 samples of size n= 15 from a Poisson Distribution (ranpoi) with
: a mean of 3. Use the computer clock as the seed number. Find the mean of
: each of your samples. (You don't have to show me this values)
: 用do-loops生成20组随机数,每组15个数字,并且符合柏松分布,mean=3
: 另外seed用电脑的时间
: 试了半天不知道怎么分组?
: 望解答。。

1 (共1页)
进入Statistics版参与讨论
相关主题
如果用循环对一个MACRO调用100次?SAS sampling Distribution的实现
R里面的函数set.seed() 的作用讨论请问SAS里面有没有类似R里面的sample之类的抽样函数?如果没有怎样实现呢
[R] Generate a set of random number summing up to NAsk a question about one sample test
真心请教各位统计高手一个关联序列生成问题请教SAS高手关于lasso...
怎样生成离散分布的随机数啊?有直接的方法吗,比如像randn()这样的函数问两个简单的sample的问题
test count data distribution in SASsample distribution的理解
在R里怎么跳到指定的地方?[合集] 请教:如何在iml里生成有条件的随机数?
[合集] SAS的问题电话面试,对方要求SAS code samples
相关话题的讨论汇总
话题: seed话题: loops话题: do话题: poisson