explore              package:classifly              R Documentation

_E_x_p_l_o_r_e _d_e_f_a_u_l_t

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

     Default method for exploring objects

_U_s_a_g_e:

     explore(model, data, n=10000, method="nonaligned", advantage=TRUE, ...)

_A_r_g_u_m_e_n_t_s:

   model: classification object

    data: data set used with classifier

       n: number of points to generate when searching for boundaries

  method: method to generate points, see 'generate_data'

advantage: only display boundaries

     ...: 

_D_e_t_a_i_l_s:

     The default method currently works for classification functions.

     It generates a data set filling the design space, finds class
     boundaries (if desired) and then displays in a new ggobi instance.

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

     Hadley Wickham <h.wickham@gmail.com>

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

     'generate_classification_data', <URL: http://had.co.nz/classifly>

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

     bsvm <- best.svm(Species~., data = iris, gamma = 2^(-1:1), cost = 2^(2:+ 4), probability=TRUE)
     explore(bsvm, iris)

