Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mmRmeta/man/make_model_matrix.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (35 sloc)
1.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Generated by roxygen2: do not edit by hand | |
% Please edit documentation in R/make_model_matrix.R | |
\name{make_model_matrix} | |
\alias{make_model_matrix} | |
\title{Create Model Matrix From Predictor Variables} | |
\usage{ | |
make_model_matrix( | |
data, | |
predictors = NULL, | |
categorical_caret = T, | |
full_rank = T, | |
zscore = T, | |
verbose = T, | |
intercept = F, | |
impute_na = T, | |
fun = median | |
) | |
} | |
\arguments{ | |
\item{data}{A summarized experiment or data frame containing for example clinical data.} | |
\item{predictors}{Character - A character vector representing column names in data concatinated with c()} | |
\item{categorical_caret}{Logical - Make dummy variables with caret | Default = TRUE} | |
\item{full_rank}{Logical - Impute missing values?} | |
\item{zscore}{Logical - Scale} | |
\item{verbose}{Logical - use dummyVars to make categorical dummy variables} | |
\item{intercept}{Logical - Intercept when using base function model.matrix()} | |
\item{impute_na}{Logical - Impute missing numerical values?} | |
\item{fun}{Function - Any function like mean, median, mode} | |
} | |
\description{ | |
This creates a model matrix via model.matrix() from predicotr variables. | |
} | |
\details{ | |
This function uses reformulate to overcome obstacle of the NSE of model.matrix. | |
} |