Re: [R] Error in FastTau(formula, data = d) : unused argument(s) (data = d)

2020-03-22 Thread varin sacha via R-help
Hi Rui, Many thanks... it perfectly works Best, Sacha Le dimanche 22 mars 2020 à 11:02:49 UTC+1, Rui Barradas a écrit : Correction: In MSE modmat <- model.matrix(as.formula(formula), data = d) doesn't need as.formula, it should be modmat <- model.matrix(formula, data = d)

Re: [R] Error in FastTau(formula, data = d) : unused argument(s) (data = d)

2020-03-22 Thread Rui Barradas
Correction: In MSE modmat <- model.matrix(as.formula(formula), data = d) doesn't need as.formula, it should be modmat <- model.matrix(formula, data = d) Sorry, rui Barradas Às 09:59 de 22/03/20, Rui Barradas escreveu: Hello, 1. There is no need to install package 'boot', it's a base

Re: [R] Error in FastTau(formula, data = d) : unused argument(s) (data = d)

2020-03-22 Thread Rui Barradas
Hello, 1. There is no need to install package 'boot', it's a base package. 2. The question. The problem is that FastTau returns an object of class "list" and there is no 'predict' method for lists, you will have to define your own. This is easy, it's just a matrix multiply. And you are not

[R] Error in FastTau(formula, data = d) : unused argument(s) (data = d)

2020-03-21 Thread varin sacha via R-help
Dear R-helpers, Another problem with FastTau function from the RobPer packages. Any solution to solve my problem would be highly appreciated. # # # # # # # # # # # # # # # # # # # # # # # # install.packages( "boot",dependencies=TRUE ) install.packages( "RobPer",dependencies=TRUE  )