We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b94b2b1 + 230affa commit 9886905Copy full SHA for 9886905
R/diagnostics.R
@@ -365,7 +365,8 @@ plot_diagnostic <-
365
col = clrs, pch = 3, cex = .6)
366
return(invisible())
367
} else {
368
- graphics::points(x = if (use_n_eff) n_eff[k < threshold] else k[k < threshold],
+ graphics::points(x = which(k < threshold),
369
+ y = if (use_n_eff) n_eff[k < threshold] else k[k < threshold],
370
col = clrs[k < threshold], pch = 3, cex = .6)
371
sel <- !in_range(k, breaks[1:2])
372
dots <- list(...)
0 commit comments