--- title: "Create a regression spec - version 2" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Create a regression spec - version 2} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` This article documents the version 2 parsed model spec for regression models. Version 3 is the current format, and tidypredict still reads version 2 models for backwards compatibility. See [tree internals](tree-internals.html) for what changed. ```{r, echo = FALSE} spec_frame <- read.csv("regression.csv") knitr::kable(spec_frame, row.names = FALSE) ```