Displaying 2 results from an estimated 2 matches for "carrio".
Did you mean:
barrio
2011 May 18
1
Integral Symbol
...e structure
I was wondering how to write the symbol for an integral function in a formula.
Similar to this one in LaTeX:
\int_{0}^{10} \Omega(t)dt
I already tried
\deqn{\int_{0}^{10} \Omega(t)dt}
but it does not work. Any idea? Which math symbols does R-help recognise?
Regards,
Javier Hidalgo Carrio
[[alternative HTML version deleted]]
2010 Jul 14
1
randomForest outlier return NA
Dear R-users,
I have a problem with randomForest{outlier}.
After running the following code ( that produces a silly data set and builds
a model with randomForest ):
#######################
library(randomForest)
set.seed(0)
## build data set
X <- rbind( matrix( runif(n=400,min=-1,max=1), ncol = 10 ) ,
rep(1,times= 10 ) )
Y <- matrix( nrow = nrow(X), ncol = 1)
for( i in (1:nrow(X))){