We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
In tidyMCMC function, help says :
robust : use mean and standard deviation (if FALSE) or median and mean absolute deviation (if TRUE) to compute point estimates and uncertainty?
While function's code does the opposite :
m <- if (robust) colMeans(ss) else apply(ss, 2, median) stdfun <- if (robust) stats::mad else stats::sd_
Thank you
The text was updated successfully, but these errors were encountered:
GH #142; median/mean switched for tidyMCMC
3ba939b
oops! (it's just m that's backward, stdfun() is OK - right?)
m
stdfun()
Sorry, something went wrong.
No branches or pull requests
Hello,
In tidyMCMC function, help says :
robust : use mean and standard deviation (if FALSE) or median and mean absolute deviation (if TRUE) to compute point estimates and uncertainty?
While function's code does the opposite :
m <- if (robust)
colMeans(ss)
else apply(ss, 2, median)
stdfun <- if (robust)
stats::mad
else stats::sd_
Thank you
The text was updated successfully, but these errors were encountered: