Description Usage Arguments Value See Also Examples
The 'proDAFit' object overwrites the dollar function to make it easy
to call functions to access values inside the object. This has the
advantage that it is very easy to discover the relevant methods
but nonetheless have an isolated implementation. Unlike the
`@`
operator which directly accesses the underlying implementation,
the `$`
operator only exposes a limited set of functions
abundances
hyper_parameters
feature_parameters
coefficients
convergence
design
reference_level
result_names
coefficient_variance_matrices
colData
rowData
1 2 3 4 5 6 7 8 | ## S3 method for class 'proDAFit'
.DollarNames(x, pattern = "")
## S4 method for signature 'proDAFit'
x$name
## S4 replacement method for signature 'proDAFit'
x$name <- value
|
x |
an object of class 'proDAFit' produced by |
pattern |
the regex pattern that is provided by the IDE |
name |
one of the functions listed above |
value |
Warning: modifying the content of a 'proDAFit' object is not allowed |
whatever the function called name
returns.
accessor_methods for more documentation on the accessor functions.
1 2 3 4 5 6 7 8 9 | syn_data <- generate_synthetic_data(n_proteins = 10)
fit <- proDA(syn_data$Y, design = syn_data$groups)
# The two styles are identical
design(fit)
fit$design
# More functions
fit$abundances
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.