acceptable_formula: Checks that the formula can be parsed

View source: R/acceptable.R

acceptable_formulaR Documentation

Checks that the formula can be parsed

Description

Uses an S3 method to check that a given formula can be parsed based on its class. It currently scans for contrasts that are not supported and in-line functions. (e.g: lm(wt ~ as.factor(am))). Since this function is meant for function interaction, as opposed to human interaction, a successful check is silent.

Usage

acceptable_formula(model)

Arguments

model

An R model object

Examples


model <- lm(mpg ~ wt, mtcars)
acceptable_formula(model)

tidymodels/tidypredict documentation built on Jan. 19, 2024, 1:14 p.m.