TITLE(resample @@ Resample new pattern set from existing one)
USAGE(
resample.nn.pattern(p, n, prob=rep(1/nrow(p$input), length = nrow(p$input)))
)
ALIAS(resample)
ARGUMENTS(
ARG(p @@ object of type LANG(nn.pattern))
ARG(n @@ number of patterns to be returned )
ARG(prob @@ resampling probabilities of patterns in LANG(p))
)
DESCRIPTION(
Create a bootstrap sample from LANG(p) by drawing with replacement
from LANG(p). Default values for the resampling probabilities of the
patterns is the uniform distribution. 
)
VALUE(
Returns an object of type LANG(nn.pattern).
)
