Skip to content

Commit

Permalink
stricter sratmax in monoMDS per wish of issue #354
Browse files Browse the repository at this point in the history
(cherry picked from commit ec654ba)
  • Loading branch information
jarioksa committed Nov 11, 2020
1 parent 6da6b53 commit 7f2f09c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/monoMDS.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
model = c("global", "local", "linear", "hybrid"),
threshold = 0.8, maxit = 200, weakties = TRUE, stress = 1,
scaling = TRUE, pc = TRUE, smin = 1e-4, sfgrmin = 1e-7,
sratmax=0.99999, ...)
sratmax=0.9999999, ...)
{
## Check that 'dist' are distances or a symmetric square matrix
if (!(inherits(dist, "dist") ||
Expand Down
2 changes: 1 addition & 1 deletion man/monoMDS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
monoMDS(dist, y, k = 2, model = c("global", "local", "linear", "hybrid"),
threshold = 0.8, maxit = 200, weakties = TRUE, stress = 1,
scaling = TRUE, pc = TRUE, smin = 1e-4, sfgrmin = 1e-7,
sratmax=0.99999, ...)
sratmax=0.9999999, ...)
\method{scores}{monoMDS}(x, choices = NA, ...)
\method{plot}{monoMDS}(x, choices = c(1,2), type = "t", ...)
\method{points}{monoMDS}(x, choices = c(1,2), select, ...)
Expand Down

0 comments on commit 7f2f09c

Please sign in to comment.