diff options
author | Suraj Yerramilli | 2016-02-26 19:58:18 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-02-26 19:58:18 +0530 |
commit | 0726b257528b292ce27b27453ea8990aa4b0645f (patch) | |
tree | 72625944e36f899253805d304e56a7a779af5880 /R/ioNamesData.R | |
parent | 23d4a99c600e6083ad8564a0044c6c81d2b711f7 (diff) | |
download | SysID-R-code-0726b257528b292ce27b27453ea8990aa4b0645f.tar.gz SysID-R-code-0726b257528b292ce27b27453ea8990aa4b0645f.tar.bz2 SysID-R-code-0726b257528b292ce27b27453ea8990aa4b0645f.zip |
fixing an error with plot
Diffstat (limited to 'R/ioNamesData.R')
-rw-r--r-- | R/ioNamesData.R | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/R/ioNamesData.R b/R/ioNamesData.R index a17cca5..e951cc3 100644 --- a/R/ioNamesData.R +++ b/R/ioNamesData.R @@ -1,5 +1,7 @@ #' @export -nInputSeries <- function(data) ncol(data$input) +nInputSeries <- function(data) { + ifelse(is.null(data$input),0,ncol(data$input)) +} #' @export nOutputSeries <- function(data) ncol(data$output) |