Code Monkey home page Code Monkey logo

Comments (2)

CorentinWicht avatar CorentinWicht commented on August 25, 2024

Changing argument in facet_wrap solved the issue raised above but generated a new one:

# Create plot
p = ggplot(Data, aes(x = Data[[X]], y = Data[[Y]], fill=Data[[X]])) +
  geom_violin() +
  geom_boxplot(width = 0.15, fill = "grey", na.rm=T, outlier.shape = NA)  +
  geom_jitter(size = 3, width = 0.15, height = 0, alpha = 0.5) +
  labs(x = X, y = Y, title=Title, 
       caption = "[+]p<.1; [*]p<.05; [**]p<.01; [***]p<.001") +
  theme_bw() +
  ylim(min(Data[[Y]], na.rm=T),max(Data[[Y]], na.rm=T)+YLimSupp) 

# Facetting the plot if required  
if (dim(Stats)[1]>1){p = p + facet_wrap(.~Measurement, scales="free_y")} # FIXED HERE

# Add the significance bars
# https://cran.r-project.org/web/packages/ggsignif/vignettes/intro.html
Steps = 0.04
NAIdx = !is.na(Annot)
Annot = Annot[NAIdx]
Groups = unique(Data[[Z]])[NAIdx]
AnnotationDF = data.frame(color = Groups,
                          start = rep(Levels[1], sum(NAIdx)),
                          end = rep(Levels[2], sum(NAIdx)),
                          y = rep(max(Data[[Y]], na.rm=T)+Steps*max(Data[[Y]], na.rm=T),sum(NAIdx)),
                          label = Annot)

p = p + geom_signif(data = AnnotationDF,
                    aes(xmin = AnnotationDF$start, xmax = AnnotationDF$end, annotations = AnnotationDF$label, y_position = AnnotationDF$y),
                    vjust = 0.3, tip_length = 0, size = 1.5, textsize = 10, manual=T)

plot(p)

New error:
image

Does this mean that AnnotationDF needs to include 6 rows to match the number of violin plots ?

Best,

Corentin

from ggsignif.

CorentinWicht avatar CorentinWicht commented on August 25, 2024

Anyone ?

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.