Creating new instance of class R6 model

Viewed 11

I would like to ask you for a help in the following case. My projects assumes to create the new instance of class - R6 model. The results should be as follow. I am not sure how to add some of the functionalities. I would really appreciate your support.

<err>
  Public:
    along: function (...) 
    apply: function (fname) 
    clone: function (deep = FALSE) 
    filter: function (condition) 
    get_data: function () 
    get_result: function () 
    initialize: function (data) 
    reset_data: function () 
    select: function (...) 
  Private:
    add_data: function (data) 
    data_current: tbl_df, tbl, data.frame
    data_original: tbl_df, tbl, data.frame
    data_result: tbl_df, tbl, data.frame
    f_absolute_error: function () 
    f_absolute_percentage_error: function () 
    f_error: function () 
    f_mean_absolute_error: function () 
    f_mean_absolute_percentage_error: function () 
    f_mean_error: function () 
    f_mean_percentage_error: function () 
    f_mean_square_error: function () 
    f_percentage_error: function () 
    f_root_mean_square_error: function () 
    f_theil: function ()
0 Answers
Related