inv.logit package:boot R Documentation _I_n_v_e_r_s_e _L_o_g_i_t _F_u_n_c_t_i_o_n _D_e_s_c_r_i_p_t_i_o_n: Given a numeric object return the inverse logit of the values. _U_s_a_g_e: inv.logit(x) _A_r_g_u_m_e_n_t_s: x: A numeric object. Missing values ('NA's) are allowed. _D_e_t_a_i_l_s: The inverse logit is defined by 'exp(x)/(1+exp(x))'. Values in 'x' of '-Inf' or 'Inf' return logits of 0 or 1 respectively. Any 'NA's in the input will also be 'NA's in the output. _V_a_l_u_e: An object of the same type as 'x' containing the inverse logits of the input values. _S_e_e _A_l_s_o: 'logit', 'plogis' which is the underlying function.