generate {convco} | R Documentation |
This function generates the sample paths of a sequence of random variables.
generate(randomgen,nmax=1000,M=500,argsgen=NULL)
nmax |
number of points in each sample path. |
M |
number of sample paths to generate. |
randomgen |
a function that generates the Xn-X values. |
argsgen |
a list of arguments to randomgen . |
data |
matrix contaning in each row a sample path of Xn-X values. |
P. Lafaye de Micheaux and B. Liquet
Lafaye de Micheaux, P. (plafaye@club.fr), Liquet, B. "Understanding Convergence Concepts: a Visual-Minded and Graphical Simulation Based Approach", The American Statistician , submitted.
check.convergence
, criterion
, investigate
,
law.plot2d
, law.plot3d
,
p.as.plot
, visualize.crit
, visualize.sp
myrbinom<-function(n,alpha){rbinom(n,1,1/(1:n))*((1:n)**alpha)} data <- generate(randomgen=myrbinom,nmax=1000,M=500,argsgen=list(alpha=0.4))$data