R/makeFigure.R

Defines functions makeFigure

# Project: hNMF_git
# 
# Author: nsauwen <nicolas.sauwen@openanalytics.eu>
#
# Description:
#
###############################################################################


makeFigure <- function(width, height) {
  
  errX11 <- try(grDevices::x11(width = width, height = height),TRUE)
  if(!is.null(errX11)){
    grDevices::dev.new(width = width, height = height)
  }   
}

Try the hNMF package in your browser

Any scripts or data that you put into this service are public.

hNMF documentation built on Jan. 8, 2021, 5:42 p.m.