You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ifelse logic that I previously wrote to add compoundName to volcano plots has a bug since it seems like you can have only have one command within the if statement to add to ggplot:
The ifelse logic that I previously wrote to add compoundName to volcano plots has a bug since it seems like you can have only have one command within the if statement to add to ggplot:
Piping into an if statement isn't ideal. This isn't very readable. Its probably best to just assign the initial ggplot() call as a grob, and then build up the grob incrementally within if/else statements:
The
if
else
logic that I previously wrote to addcompoundName
to volcano plots has a bug since it seems like you can have only have one command within theif
statement to add toggplot
:e.g. you can do:
but you cannot do:
instead this would need to be:
The text was updated successfully, but these errors were encountered: