sestats_to_df | R Documentation |
Convert sestats to table summary
sestats_to_df(
sestats,
style = c("text", "integer"),
dimname_order = c(3, 2, 1),
rename_contrasts = FALSE,
...
)
sestats |
|
style |
|
rename_contrasts |
|
... |
additional arguments are passed to
|
Note: This function is intended to provide a simple data.frame summary with the number of hits for each contrast, signal, cutoff. It is still being tested, and updated for usability.
TODO: The order of dimnames(hit_array)
should be user-customizable.
The series of dimnames in each lapply should use this order.
data.frame
with a summary of statistical hits per contrast,
assay_name, and threshold.
Other jamses stats:
ebayes2dfs()
,
format_hits()
,
handle_na_values()
,
hit_array_to_list()
,
process_sestats_to_hitim()
,
run_limma_replicate()
,
save_sestats()
,
se_contrast_stats()
,
sestats_to_dfs()
,
voom_jam()
if (FALSE) {
hitdf <- sestats_to_df(list(hit_array=hit_array));
hitdf_rowindex <- table(hitdf[[1]])[unique(hitdf[[1]])]
jamba::kable_coloring(
hitdf[, -1, drop=FALSE],
row.names=FALSE) %>%
kableExtra::pack_rows(index=hitdf_rowindex)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.