Coder Social home page Coder Social logo

Comments (5)

const-ae avatar const-ae commented on August 20, 2024

There is currently no way to plot only brackets for significant differences. The idea is that you decide in the beginning which comparisons are interesting for you and this package helps you to show their comparison.

from ggsignif.

aleysia avatar aleysia commented on August 20, 2024

There's a way to avoid printing "NS" for non-significant comparisons, but this won't prevent the lines from being drawn. Since you can define what symbols to use at each significance level, something like

map_signif_level=c("***"=0.001,"**"=0.01, "*"=0.05, " "=2)

will cause anything with p>0.05 to not print any text.

from ggsignif.

Midnighter avatar Midnighter commented on August 20, 2024

What I did is to filter the data I pass to the annotations argument, for example, a label column, by p-value and set the uninteresting ones to NA. Then they will not be drawn at all. (Maybe this was not possible in earlier versions.)

from ggsignif.

asierFernandezP avatar asierFernandezP commented on August 20, 2024

Hi @Midnighter, could you please share how you did that? Thank you!

from ggsignif.

Midnighter avatar Midnighter commented on August 20, 2024

Similarly to the advanced example at the bottom of https://const-ae.github.io/ggsignif/

I created a data frame using the pairwiseComparisons::pairwise_comparisons function similarly to the following where group is the variable for the comparison groups and measure are the values.

annotation_df <- tbl %>%
      pairwiseComparisons::pairwise_comparisons(
        group,
        measure
      ) %>%
      dplyr::mutate(
        groups = purrr::pmap(
          .l = list(group1, group2), .f = c
        ),
        label = round(p.value, 3)
      ) %>%
      dplyr::arrange(group1) %>%
      dplyr::filter(p.value < 0.05)

I then create a ggplot to my liking and directly use the above table.

plot <- ggplot2::ggplot(...) +
    ...

if (nrow(annotation_df) > 0) {
    plot + ggsignif::geom_signif(
          comparisons = annotation_df$groups,
          annotations = annotation_df$label,
          na.rm = TRUE,
          parse = TRUE
        )
}

I've put this into convenient functions that I use many times in my project. That makes it a bit less painful to prepare the data in the right way.

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.