nongeno: Create a nongeno Object

View source: R/nongeno.R

nongenoR Documentation

Create a nongeno Object

Description

Creates an object of class nongeno containing a non-genotype design matrix, the type of kernel to generate, and the weights to be used to create the kernel matrix. This function is used to simplify the input structure of the call to KITdesign.

Usage

nongeno(mat, kernel = "linear", weights = NULL)

Arguments

mat

Design matrix. Missing values must be coded as NA.

kernel

Type of kernel. Must be one of 'interactive', 'linear', 'quadratic'. For linear kernel, the constant is taken to be zero; for quadratic kernel, it is one.

weights

Weights, if any, to be used in generating kernel. Object can be a vector or matrix. If vector, weights is converted to a diagonal matrix.

Value

Returns an object of class nongeno containing the design matrix, the weights to be used in generating the kernel, and the type of kernel to be generated.

Author(s)

Shannon T. Holloway

See Also

geno, KITdesign

Examples

  ngdata <- matrix(rnorm(40),ncol=4L)

  nongeno(mat = ngdata, kernel = "linear", weights = NULL)


FastKM documentation built on June 7, 2022, 5:08 p.m.