as.list.snha {snha} | R Documentation |
return a list representation for an snha graph object
Description
The function 'as.list.snha' provides a S3 method to convert a snha graph object into a list object which can be for instance used to write a report into an XLSX file using the library openxlsx.
Usage
## S3 method for class 'snha'
as.list(x,...)
Arguments
x |
snha graph object created with the snha function |
... |
additional arguments, delegated to the list command |
Value
list object with the components: 'chains' (the association chain), 'data' (original data), 'theta' (adjacency matrix, 'sigma' (correlations), 'p.value' (correlation p-values)
See Also
Examples
data(swiss)
as=snha(swiss,method="spearman",alpha=0.1)
result=as.list(as)
ls(result)
result$settings
# can be writte as xlsx file for instance like:
# library(openxlsx)
# write.xlsx(result,file="some-result.xlsx")
[Package snha version 0.1.3 Index]