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
Describe the bug When data consists missing values (NA) mean is calculated properly (omit NAs), but median not
To Reproduce Let's define some vector of numbers and run report() function on it.
report()
x <- c(10, 21, 199, 21, 11, NA, 190) report(x)
Expected behaviour Calculated all statistics and information on missing percentage, but I've got
x: n = 7, Mean = 75.33, SD = 92.47, Median = , MAD = 15.57, range: [10, 199], Skewness = 0.96, Kurtosis = -1.85, 1 missing
Similar situation is for report_table().
report_table()
Specifications:
report
The text was updated successfully, but these errors were encountered:
Is anybody here who can help me with the issue.
Sorry, something went wrong.
We'll look into this
No branches or pull requests
Describe the bug
When data consists missing values (NA) mean is calculated properly (omit NAs), but median not
To Reproduce
Let's define some vector of numbers and run
report()
function on it.Expected behaviour
Calculated all statistics and information on missing percentage, but I've got
Similar situation is for
report_table()
.Specifications:
report
0.5.9The text was updated successfully, but these errors were encountered: