#' Plot a flowFramePlus use base R (pplot)
#'
#' @importFrom flowCore plot
#' @importFrom fields xline yline
#' @importFrom grDevices colorRampPalette hsv
#' @importFrom graphics box
#' @import flowViz
#' @param self this
#' @param private this$private
#' @param plist Which columns to plot on the x and y axes, can override settings made at class instantiation
#' @param tx Scale to apply to x axis
#' @param ty Scale to apply to y axis
#'
#' @keywords internal
#'
ffp_plot_classic <- function(self, private, plist = self$plist, blueBackground=FALSE, showZero=TRUE, nbin=501, bandwidth=0.001, cr=blob_color(blueBackground=FALSE), col = "black", nrpoints=0, instrument=c("diva", "influx"), tx=self$plotScales$x, ty=self$plotScales$y, plotaxt = T, ticksize=1,...) {
if(!is.null(cr)){
suppressWarnings (flowCore::plot (self$ffTxed, plist, colramp=cr, nbin=nbin, band=bandwidth, nrpoints=nrpoints, axes=FALSE, ...))
}
else{
suppressWarnings(flowCore::plot (exprs(self$ffTxed)[,plist[1]],exprs(self$ffTxed)[,plist[2]], pch=20, col=col,cex =.2, axes=F,xlab=plist[1],ylab=plist[2], ...))
box()
}
if(plotaxt==TRUE){
suppressWarnings (ax (1, instrument=instrument, type=tx, ticksize=ticksize))
suppressWarnings (ax (2, instrument=instrument, type=ty, ticksize=ticksize))
}
if (showZero) {
xline (0, lty='dotdash')
yline (0, lty='dotdash')
}
}
ffp_lookupPlotScale = function(self, private, ns){
#if there is some lookup that needs to occur it should be here
#right now let's map by identity
return(ns)
}
#' Plot a flowSetPlus use base R (pplot)
#'
#' @importFrom flowCore plot
#' @importFrom fields xline yline
#' @importFrom grDevices colorRampPalette hsv
#' @importFrom graphics box
#' @import flowViz
#' @param self this
#' @param private this$private
#' @param plist Which columns to plot on the x and y axes, can override settings made at class instantiation
#' @param tx Scale to apply to x axis
#' @param ty Scale to apply to y axis
#' @param main Plot titles
#'
#' @keywords internal
#'
fsp_plot_classic <- function(self, private, main=NULL, ...){
par(mfrow = n2mfrow(length(self$frames)))
if(length(main>1)){
# labels for each plot
for(fnum in 1:length(self$frames)){
f<-self$frames[[fnum]]
m<-main[fnum]
f$plot(main=m)
}
}else{
for(f in self$frames){
f$plot(...)
}
}
}
#' Plot a flowSetPlus using flowviz xyplot
#'
#' @importFrom flowViz xyplot
#' @param self this
#' @param private this$private
#'
#' @keywords internal
#'
fsp_plot_flowviz <- function(self, private, ...){
flowViz::xyplot(self$plist[1] ~ self$plist[2], data = fsp$getFlowSet())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.