Skip to content
New issue

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

What determines the size of the bars? #171

Open
bagcik1lumc opened this issue Jan 5, 2023 · 3 comments
Open

What determines the size of the bars? #171

bagcik1lumc opened this issue Jan 5, 2023 · 3 comments
Labels
help-request User requested help with the package

Comments

@bagcik1lumc
Copy link

bagcik1lumc commented Jan 5, 2023

The size of the bars in the intersection chart do not match their percentage value. For example, the 15% bar > 26% bar. How can you change this?

upset(
  M1_BinaryMatrix,
  colnames(M1_BinaryMatrix),
  min_degree=2,
  sort_intersections_by='ratio',
  name="",
  mode="inclusive_intersection",
  set_sizes=(
    upset_set_size(position='right')
    + geom_text(aes(label=paste0(round((..count../nrow(M1_BinaryMatrix))*100), '%')), hjust=1.1, stat='count', color='white')
    + expand_limits(y=1000)
    + ylab("")
    + theme(axis.text.x = element_blank())
  ),
  #
  base_annotations=list(
    'Intersection size'=intersection_size(text_mapping=aes(label=paste0(round(
      !!get_size_mode('inclusive_intersection')/nrow(M1_BinaryMatrix) * 100
    ), '%')))
#    'Intersection ratio'= intersection_ratio(text_mapping=aes(label=paste0(round(
#      !!get_size_mode('inclusive_intersection')/!!nrow(head(M1_BinaryMatrix, 1000)) * 100
#    ), '%')))
    + ylab("") 
    + theme(axis.text.y=element_blank())
  ),
  # sort_intersections='descending',
  #
  stripes=c(alpha('grey90', 0.45), alpha('white', 0.3)),
  matrix = intersection_matrix(    
    geom=geom_point(
      shape='square',
      size=4
    ),
    segment=geom_segment(
      linetype='solid'
    ), 
    outline_color=list(
      active='darkorange3',
      inactive='grey70'
    )
  )
  #
) + labs(title = "", caption = "")

@bagcik1lumc bagcik1lumc added the help-request User requested help with the package label Jan 5, 2023
@krassowski
Copy link
Owner

Please fill in the issue template with a reproducible example

@bagcik1lumc
Copy link
Author

Which template?

@krassowski
Copy link
Owner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help-request User requested help with the package
Projects
None yet
Development

No branches or pull requests

2 participants