Learn R Programming

blorr (version 0.3.0)

blr_prep_lorenz_data: Lorenz curve data

Description

Data for generating Lorenz curve.

Usage

blr_prep_lorenz_data(model, data = NULL, test_data = FALSE)

Arguments

model

An object of class glm.

data

A tibble or data.frame.

test_data

Logical; TRUE if data is test data and FALSE if training data.

Examples

Run this code
# NOT RUN {
model <- glm(honcomp ~ female + read + science, data = hsb2,
             family = binomial(link = 'logit'))
data <- model$data
blr_prep_lorenz_data(model, data, FALSE)

# }

Run the code above in your browser using DataLab