linearFamily property

Map<String, String> linearFamily
getter/setter pair

Implementation

Map<String, String> linearFamily = {
  'Logit': '''

      The logit model uses the logistic function to model the probability of a binary outcome,
      mapping it to a log-odds scale for linearity in coefficients.

  ''',
  'Probit': '''

      The probit model uses the cumulative normal distribution to model the probability of
      a binary outcome, mapping probabilities to a z-score scale for linearity in coefficients.

  ''',
};