predict                package:FLCore                R Documentation

_M_e_t_h_o_d _p_r_e_d_i_c_t

_D_e_s_c_r_i_p_t_i_o_n:

     _predict_ returns predicted values according to the parameter
     values and  model formula in an 'FLModel-class' object. If no
     extra input is given, _predict_ will use the input values
     contained in the relevant slots. If any extra named argument is
     provided, this is used instead and the correspodning predicted
     values are returned.

_G_e_n_e_r_i_c _f_u_n_c_t_i_o_n:

     predict(object, ...)

_M_e_t_h_o_d_s:


      _s_i_g_n_a_t_u_r_e(_o_b_j_e_c_t=_F_L_M_o_d_e_l) : Calculates predicted values according
          to the fitted model

_A_u_t_h_o_r(_s):

     The FLR Team

_S_e_e _A_l_s_o:

     FLComp

_E_x_a_m_p_l_e_s:

     # nsher FLSR dataset
     data(nsher)

     # predict with no extra arguments returns the values
     # predicted during model fitting
     predict(nsher)

     # which can also be extracted from the 'fitted' slot
     fitted(nsher)

     # a different ssb vector can be provided
     predict(nsher, ssb=FLQuant(seq(10, 150, by=5)))

