glance.logitr {logitr}R Documentation

Glance a logitr class object

Description

Glance a logitr class object

Usage

## S3 method for class 'logitr'
glance(x, ...)

Arguments

x

is an object of class logitr.

...

further arguments.

Value

A tibble of the model summary statistics.

Examples

library(logitr)

# Estimate a preference space model
mnl_pref <- logitr(
  data    = yogurt,
  outcome = "choice",
  obsID   = "obsID",
  pars    = c("price", "feat", "brand")
)

# Extract a tibble of the model summary statistics
glance(mnl_pref)


[Package logitr version 1.1.2 Index]