Code Monkey home page Code Monkey logo

Comments (5)

IndrajeetPatil avatar IndrajeetPatil commented on July 3, 2024 2

@IsabelPotani You can have a look at ggstatsplot, which uses ggsignif to show pairwise comparisons with statistics adjusted for multiple comparisons.

from ggsignif.

IsabelPotani avatar IsabelPotani commented on July 3, 2024 1

Thanks, both. Your solutions have helped to resolve my problem

from ggsignif.

const-ae avatar const-ae commented on July 3, 2024

Hi Isabel,

unfortunately, the Bonferroni (or other multiple testing corrections) are not supported by ggsignif. You will have to calculate the tests manually, calculate the correction, and then provide the annotation to ggsignif. Please see the 'Advanced Example' on how to do this.

Best,
Constantin

from ggsignif.

IsabelPotani avatar IsabelPotani commented on July 3, 2024

@IsabelPotani You can have a look at ggstatsplot, which uses ggsignif to show pairwise comparisons with statistics adjusted for multiple comparisons.

Hi. Thanks for your help last time. I am trying to change the annotation for pairwise comparisons to asterisk and not the actual p values using the code below, but it's not working. Can you help me pick out what I am doing wrong?

ggbetweenstats(
data = survival1b,type="p",results.subtitle="FALSE",k=2,
x=site, y = hos_stay3, outlier.tagging = FALSE,pairwise.display="significant", plot.type = "box",pairwise.annotation = "asterisk", p.adjust.method="bonferroni", xlab="Site",ylab="Number of days hospitalised" ,title = "Duration of hospital stay", )+ggplot2::scale_y_continuous( breaks = seq(from = 0, to = 43, by = 2))

from ggsignif.

IndrajeetPatil avatar IndrajeetPatil commented on July 3, 2024

Here is an example:

library(ggplot2)
library(ggsignif)
library(dplyr, warn.conflicts = FALSE)
library(ggstatsplot)

# creating a basic plot
p <- ggplot(iris, aes(Species, Sepal.Width)) +
  geom_boxplot()

# using `pairwise_comparisons()` package to create a data frame with results
df <- pairwise_comparisons(iris, Species, Sepal.Width) %>%
    dplyr::mutate(groups = purrr::pmap(.l = list(group1, group2), .f = c)) %>%
    dplyr::arrange(group1)

# add new significance column based on standard APA guidelines
signif_column <- function(data, p) {
  dplyr::mutate(
    data,
    significance = dplyr::case_when(
      {{ p }} >= 0.050 ~ "ns",
      {{ p }} < 0.050 & {{ p }} >= 0.010 ~ "*",
      {{ p }} < 0.010 & {{ p }} >= 0.001 ~ "**",
      {{ p }} < 0.001 ~ "***"
    )
  )
}

df <- signif_column(df, p.value)

# using `geom_signif` to display results
p +
  ggsignif::geom_signif(
    comparisons      = df$groups,
    map_signif_level = TRUE,
    tip_length       = 0.01,
    y_position       = c(4.75, 5.00, 5.25),
    annotations      = df$significance,
    test             = NULL,
    na.rm            = TRUE
  )

Created on 2022-12-14 with reprex v2.0.2

from ggsignif.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.