Nothing
RNGtest <- function(u, m=5) {
n <- length(u)-1
A <- diag(rep(1,n))
A <- rbind(rep(0, n), A)
A <- cbind(A, rep(0, n+1))
xy <- matrix(u, nrow=n+1)
for (j in 1:m) {
xy <- cbind(xy, A%*%xy[,j])
}
xy <- data.frame(xy)
names(xy) <- c("y", paste("x", 1:m, sep=""))
xy <- xy[-(1:m),]
xytrain <- xy[1:(n/2),]
xytest <- xy[-(1:(n/2)),]
xy.rf <- randomForest(y ~ ., data = xytrain)
oldpar <- par(mfrow=c(1,2))
on.exit(par(oldpar))
plot(predict(xy.rf), xytrain$y, cex=.3,
xlab="predicted values", ylab="observed values",
main = "training data")
outtrain <- lm(xytrain$y ~ predict(xy.rf))
abline(outtrain)
title(sub = paste("p-value:",
round(summary(outtrain)$coefficients[2, 4], 6)))
plot(predict(xy.rf, newdata=xytest), xytest$y, cex=.3,
xlab="predicted values", ylab="observed values",
main="test data")
outtest <- lm(xytest$y ~ predict(xy.rf, newdata=xytest))
abline(outtest)
title(sub = paste("p-value:", round(summary(outtest)$coefficients[2, 4], 6)))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.