Displaying 4 results from an estimated 4 matches for "idperson".
2017 Nov 15
2
R6 object that is a list of referenced object
Dear community,
I am having a class, let's say Person,
Person <- R6Class("Person",
public = list(
idPerson = NULL,
name = NULL,
age = NULL,
initialize = function(idPerson = NA, name = NA, age = NA) {
self$idPerson <- idPerson
self$name <- name
self$age <-...
2017 Nov 16
0
R6 object that is a list of referenced object
See below.
On Wed, 15 Nov 2017, Cristina Pascual wrote:
> Dear community,
>
> I am having a class, let's say Person,
>
> Person <- R6Class("Person",
> public = list(
> idPerson = NULL,
> name = NULL,
> age = NULL,
> initialize = function(idPerson = NA, name = NA, age = NA) {
It is a bad idea to setup default values for all your parameters in any
function, but particularly so for an initialization...
2017 Nov 15
0
R6 object that is a list of referenced object
Dear community,
I am having a class, let's say Person,
Person <- R6Class("Person",
public = list(
idPerson = NULL,
name = NULL,
age = NULL,
initialize = function(idPerson = NA, name = NA, age = NA) {
self$idPerson <- idPerson
self$name <- name
self$age <-...
2017 Oct 18
1
conformal predictions
Dear community,
I want to use conformal prediction to measure how good are my svm-regression predictions (having used library e1071).
I have gone through the conformal package documentation. But I'm pretty newer and need some more and detailed examples.
Can anybody help me?
Thanks in advance,
[[alternative HTML version deleted]]