eq <- function(x){ sum(exp(-Ln.M_Return[,1]/x)) / 168 - 1 }
# Ln.M_Return[,1] is a vector of stock return, and its length is 168.
My first goal is to draw the plot for this function. However, there is always an error here. When I use "curve" function,
curve(eq(x))
it will appear an error message:
Error in curve(eq(x)) : 'expr'
In addition: Warning message:
In -Ln.M_Return[, 1]/x :
longer object length is not a multiple of shorter object length
I have tried some other methods, like plot() and xyplot(), but nothing changed.
My main purpose is actually using bisection method to find the root of the function, which is the formula of Aumann-Serrano riskiness index. Thus, I choose to draw the plot first and approximate the location of the root. Then I will use some codes of bisection to find the root. Thanks for reading my question patiently!
Without having your
Ln.M_Return
, I created some random data. You shouldVectorize
your equation in thecurve
function like this:Output: