how to save picture and add title to waterfall GenVisR mutation analyse?
1
@zihaoxing-13254
Last seen 6.0 years ago
i have a problem and want to ask a question .how to save picture and add a title to waterfall mutation analyse by GenVisR package?
GenVisr
genvisr
waterfall
mutation
• 1.2k views
@zlskidmore-9639
Last seen 12 months ago
United States
are you using Waterfall() or waterfall(), theres currently two function while I transition to a more object oriented style.
If you're using Waterfall() this should work:
plot <- Waterfall()
pdf(file="tmp.pdf")
drawPlot(plot)
dev.off()
otherwise you should be able to do this:
pdf(file="tmp.pdf")
waterfall()
dev.off()
Both functions have the ability to add extra ggplot layers for lower case waterfall something like this should work:
library(ggplot2)
layer <- list(ggtitle("MY TITLE"))
waterfall(brcaMAF, mainRecurCutoff = .5, mutBurdenLayer = layer)
There is a similar parameter for the new uppercase Waterfall() function as well, you just need to make sure your ggplot layer is passed as a list.
Login before adding your answer.
Traffic: 766 users visited in the last hour