Usage
boostMDS(D, Y, rate = 0.01, maxit = 50, tol = 0.001, samplesize,
verbose = TRUE, scale = FALSE, seed = 149, plt = FALSE, mc.cores = 1)
Arguments
Y
Matrix with points from a valid MDS solution for the distances in D.
rate
Grid step rate, start with 0.1 which usually is a good compromise,
try also 0.01, 1, 10.
maxit
Maximum number of iterations.
tol
Tolerace for R-square convergence.
samplesize
When there are over 100 points to represent, the gradiend descent step size is determined
using a fraction samplesize
of the original data points.
By default 0.01 with a minimum of 100 points, which typically gives
very stable results. Setting large samplesize
can
significantly increase the computational cost.
verbose
Give details of the gains in R-square and step size.
scale
Whether to scale the MDS coordinates in the output MDS.
seed
A random seed to be used in the resampling process if samplesize < 1.
plt
Whether to plot the intermediate solutions or not.
mc.cores
Number of cores to use in parallelized grid step size search.