TaxaNorm_Model_Parameters-class | R Documentation |
S4 class to store TaxaNorm Parameters
TaxaNorm_Model_Parameters(coefficients, mu, theta, pi)
## S4 method for signature 'TaxaNorm_Model_Parameters'
coefficients(x)
## S4 replacement method for signature 'TaxaNorm_Model_Parameters'
coefficients(x) <- value
## S4 method for signature 'TaxaNorm_Model_Parameters'
mu(x)
## S4 replacement method for signature 'TaxaNorm_Model_Parameters'
mu(x) <- value
## S4 method for signature 'TaxaNorm_Model_Parameters'
theta(x)
## S4 replacement method for signature 'TaxaNorm_Model_Parameters'
theta(x) <- value
## S4 method for signature 'TaxaNorm_Model_Parameters'
pi(x)
## S4 replacement method for signature 'TaxaNorm_Model_Parameters'
pi(x) <- value
coefficients |
Passed to |
mu |
Passed to |
theta |
Passed to |
pi |
Passed to |
x |
TaxaNorm_Model_Parameters object |
value |
Replacement value |
Parameters for TaxaNorm Method
coefficients(TaxaNorm_Model_Parameters)
: Return coefficients
slot
mu(TaxaNorm_Model_Parameters)
: Return mu
slot
theta(TaxaNorm_Model_Parameters)
: Return theta
slot
pi(TaxaNorm_Model_Parameters)
: Return pi
slot
coefficients
matrix
coefficients
mu
matrix
mu
theta
matrix
theta
pi
matrix
pi
coefficients <- matrix(c(1,2,3,4,5,6,7,8,9),nrow=3,ncol=3,byrow=TRUE)
mu <- matrix(c(1,2,3,4,5,6,7,8,9),nrow=3,ncol=3,byrow=TRUE)
theta <- matrix(c(1,2,3,4,5,6,7,8,9),nrow=3,ncol=3,byrow=TRUE)
pi <- matrix(c(1,2,3,4,5,6,7,8,9),nrow=3,ncol=3,byrow=TRUE)
TaxaNorm_Model_Parameters(coefficients = coefficients,mu = mu,theta = theta,pi = pi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.