Git Product home page Git Product logo

Comments (2)

const-ae avatar const-ae commented on August 21, 2024 1

Hi, I am happy to hear that you like the package.

the argument that is given to test must satisfy certain requirements, which anova does not so that is the reason, why the significance layer is not appearing.

But you can easily wrap the anova call in your own function, as I do in this example:

a <- rnorm(n = 10, mean = 5, sd = 1)
b <- rnorm(n = 10, mean = 5.8, sd = 1)


library(tidyverse)
#> Loading tidyverse: ggplot2
#> Loading tidyverse: tibble
#> Loading tidyverse: tidyr
#> Loading tidyverse: readr
#> Loading tidyverse: purrr
#> Loading tidyverse: dplyr
#> Conflicts with tidy packages ----------------------------------------------
#> filter(): dplyr, stats
#> lag():    dplyr, stats
library(ggsignif)

data <- data.frame(label = c(rep("A", 10), rep("B", 10)), id = c(1:10, 1:10), 
  value = c(a, b))

ggplot(data, aes(x = label, y = value)) +
  geom_boxplot() + 
  geom_signif(comparison = list(c("A",  "B")), y_position = 7.2, test = "wilcox.test") + 
  geom_signif(comparison = list(c("A",  "B")), y_position = 7.6, test = "t.test") +
  geom_signif(comparison = list(c("A",  "B")), y_position = 8, test = function(a, b) {
    list(p.value = summary(aov(a ~ b))[[1]][["Pr(>F)"]][[1]])
  })

I actually call aov instead of anova, but this should not be that important. Please note that the package is only designed to support 2 way comparisons (unlike the original intend of an anova), so you might want to compute the individual p-values separately and then use the annotations parameter to draw them.

from ggsignif.

Rsigni avatar Rsigni commented on August 21, 2024

Thanks a lot const-ae for your immediate reply ! Highly appreciable !
I have few doubts :

  1. " [[1]][["Pr(>F)"]][[1]] " - could you please explain what this indicates ? Because the p values are different when I run anova separately for each and every values in the data. With geom_significance it is showing as "NS" whereas if i run anova separately for the same set of values, it shows "***" Significant difference.
  2. In the place of anova, can I use tukey or duncan test for multiple comparisons?
  3. I would like to have "", "", "", "NS" in different colors. since I didn't specify annotations separately, I couldn't give different colors. could you please help me ?

geom_signif(comparisons = list(c("High", "Low")), y_position=c(4.5, 7.7),test = function(a, b) { list(p.value = summary(aov(a ~ b))[[1]][["Pr(>F)"]][[1]])}, map_signif_level=T, tip_length=0)
Once again thanks for your help and for your valuable time to help me out !

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.