Skip to content

Commit

Permalink
fix minor bug in showLinePlots
Browse files Browse the repository at this point in the history
  • Loading branch information
fbenke-pik committed Feb 15, 2024
1 parent 2b42a9b commit 5404e29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/showLinePlots.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ showLinePlots <- function(
mainReg = getOption("mip.mainReg")
) {

data <- as.quitte(data)
data <- as.quitte(data) %>%
filter(!is.na(.data$value))

# Validate function arguments.
stopifnot(is.character(vars) || is.null(vars))
Expand Down

0 comments on commit 5404e29

Please sign in to comment.