#' @title significant_lipafisher
#'
#' @description (LipaTg) Gives you which cluster have significant lipa subpopulations.
#'
#' @param dataset The output of correctlipa_fisher.test
#'
#' @return A dataframe with the significant Lipa clusters
#'
#' @examples lipa.40pc_0.2_sig <- significant_lipafisher(lipa.40pc_0.2_fisher)
#'
#' @export
#' @importFrom dplyr "%>%"
#'
significant_lipafisher <- function(dataset) {
return(dataset[dataset$p.value < 0.05,])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.