File: break_up_matrix_term.Rd

package info (click to toggle)
r-cran-projpred 2.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,180 kB
  • sloc: cpp: 296; sh: 14; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/helper_formula.R
\name{break_up_matrix_term}
\alias{break_up_matrix_term}
\title{Break up matrix terms}
\usage{
break_up_matrix_term(formula, data)
}
\arguments{
\item{formula}{A \code{\link{formula}} for a valid model.}

\item{data}{The original \code{data.frame} with a matrix as predictor.}
}
\value{
A \code{list} containing the expanded \code{\link{formula}} and the expanded
\code{data.frame}.
}
\description{
Sometimes there can be terms in a formula that refer to a matrix instead of a
single predictor. This function breaks up the matrix term into individual
predictors to handle separately, as that is probably the intention of the
user.
}