search for: shuttle1

Displaying 3 results from an estimated 3 matches for "shuttle1".

Did you mean: shuttle
2017 Sep 24
2
predict y tree
...iente error cuando ejecuto predict para un árbol de clasificación-regresión. El problema da incluso con el ejemplo del comando predict library(tree) data(shuttle, package="MASS") shuttle.tr <- tree(use ~ ., shuttle, subset=1:253, mindev=1e-6, minsize=2) shuttle.tr shuttle1 <- shuttle[254:256, ]  # 3 missing cases predict(shuttle.tr, shuttle1) Da el error: Error in pred1.tree(object, tree.matrix(newdata)) : object 'VR_pred1' not found Sabe alguien ¿cuál es el problema? ¿Os ocurre a vosotros lo mismo? Un cordial saludo, Juan -- Juan Antonio Gil Pascual...
2017 Sep 24
2
predict y tree
...ecto intentaré mandar un mensaje al autor. De todas las maneras espero que alguien lo pruebe en windows 10 Saludos, Juan El 24/09/2017 a las 20:32, Carlos Ortega escribió: > Hola Juan Antonio, > > Acabo de instalar "tree" en Mac OSX y no aparece este error... > > > shuttle1 <- shuttle[254:256, ]  # 3 missing cases > > predict(shuttle.tr <http://shuttle.tr>, shuttle1) > auto noauto > 254   0      1 > 255   0      1 > 256   0      1 > > De todas formas por si puede ser un error propio de Windows, mira si > este fix te valdría: > &...
2002 Aug 23
2
why delete.response?
Hi all, I am running R1.5.0 under unix. I recently used the function 'predict.tree' to make predictions with a tree object and a dataframe of numeric items. The predict.tree internally, calls a function 'delete.response'. When I removed this function call from the source code of predict.tree, it ran 10 times faster without any differences in the result obtained. The