[This article was first published on Xi'an's Og » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Here is an email sent by one of my students a few days ago:
Do you know how to integrate a function with an “if”?
For instance:
>X=rnorm(100)
>Femp=function(x){
+ return(sum(X<x))
+}
>integrate(Femp,0,1)$valuedoes not work.
My reply was that the fundamental reason it does not work is that integrate (or curve for instance) computes the function in several points of a grid by calling the function on a vector x and the comparison X<x does not make sense when both X and x are vectors. If one rewrites the code as
X=rnorm(100) Femp=function(x){ return((apply(as.matrix(outer(X,x,"-")<0),2,sum))}
the function can be integrated
> integrate(Femp,-2,2) 1.877735 with absolute error < 5.6e-05
However, this kind of syntactic gymnastic can be avoided by a simple call to Vectorize.
X=rnorm(100) Femp=function(x){ return(sum(X<x))} > integrate(Vectorize(Femp),-2,2) 1.877735 with absolute error < 5.6e-05
Filed under: R, Statistics Tagged: integrate, R, Vectorize
To leave a comment for the author, please follow the link and comment on their blog: Xi'an's Og » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.