Entering edit mode
8 days ago
soullevram98
▴
10
I created an interactive volcano plot using the code below using glXYPlot function in Glimma. A separate HTML page is created; however, when I knit the R markdown document, the interactive plot is not displayed in the final HTML document. How can I retain the interactive plot in the final document?
{r eval = T, echo = T}
glXYPlot(x=fit.contrst$coefficients[,1],
y=fit.contrst$lods[,1],
xlab="Log fold-change",
ylab="B",
main="CFVsNormal",
counts=voom$E,
groups=group.data,
status=summary.data[,1],
anno=fit.contrst$genes,
side.main="ENTREZID",
folder = "volcano",
)
Have you tried implicitly setting "html=NULL"?
Looking at the github for GlimmaV2, the internally called function
glimmaXYWidget
will return the widget without exporting it ifhtml=NULL
I'm trying to build the XYData, but I get the error "could not find function "buildXYData""
Sorry, I meant in your original example to explicitly state:
Otherwise because these functions are internal Glimma functions if you want to edit the function you'll need to prepend them with Glimma:: or Glimma::: depending on whether it's an exported function or an internal one