| as.character.gips {gips} | R Documentation |
Transform the gips object to a character vector
Description
Implementation of the S3 method.
Usage
## S3 method for class 'gips'
as.character(x, ...)
Arguments
x |
An object of a |
... |
Further arguments (currently ignored). |
Value
Returns an object of a character type.
See Also
-
as.character.gips_perm()- The underlyinggips_permof thegipsobject is passed toas.character.gips_perm(). -
permutations::as.character.cycle()- The underlying permutation of thegipsobject is passed topermutations::as.character.cycle().
Examples
A <- matrix(rnorm(4 * 4), nrow = 4)
S <- t(A) %*% A
g <- gips(S, 14, perm = "(123)")
as.character(g)
[Package gips version 1.2.1 Index]