We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For rotating count text over the top bar only, something like:
ComplexUpset::intersection_size( mapping=aes(angle=ifelse(..y..>threshold, 90, 0), vjust=ifelse(..y..>threshold, 0.5, -0.25)), size=0, text=list(check_overlap=TRUE, vjust=NULL) )
For labelling venn diagrams over the edge, using:
geom_venn_label_set_edge = function( data, mapping=aes_(), sets=NULL, resolution=250, text_smoothing=30, vjust=1.1, ... ) { defaults = aes( x=x, y=y, group=region, label=region, hjust=ifelse(y<0, 'ymin', 'ymax'), ) mapping = modifyList(defaults, mapping) df = ComplexUpset:::approximate_polygon(data, sets=sets, resolution=resolution) df = df[df$region %in% sets, ] geomtextpath::geom_textpath( data=df, mapping=mapping, text_only=TRUE, upright=TRUE, vjust=vjust, text_smoothing=text_smoothing, ... ) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For rotating count text over the top bar only, something like:
For labelling venn diagrams over the edge, using:
The text was updated successfully, but these errors were encountered: