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
It would be great if there is an option to control the treatment of NA, like in base functions mean and sum.
I would prefer if the following returned NA, rather than 0.1489125
Return.annualized(c(0.1, 0.2, NA), scale = 1)
The text was updated successfully, but these errors were encountered:
This wrapper also works, but just saying would be a good option to have by default.
Return.annualized.na <- function(vector, ...) { if (any(is.na(vector))) { return(NA) } else { PerformanceAnalytics::Return.annualized(R = vector, ...) } }
Sorry, something went wrong.
No branches or pull requests
It would be great if there is an option to control the treatment of NA, like in base functions mean and sum.
I would prefer if the following returned NA, rather than 0.1489125
The text was updated successfully, but these errors were encountered: