Skip to content

Commit

Permalink
New release.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhahsler committed May 10, 2022
1 parent fb73fee commit 3ab49ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: stream
Version: 1.5-0.1
Date: 2021-xx-xx
Version: 1.5-1
Date: 2022-05-09
Encoding: UTF-8
Title: Infrastructure for Data Stream Mining
Authors@R: c(person("Michael", "Hahsler", role = c("aut", "cre", "cph"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# stream 1.5-0.1 (xx/xx/21)
# stream 1.5-1 (05/09/22)

## Changes
* Removed registry in favor of using R Studio auto-complete.
Expand Down
2 changes: 1 addition & 1 deletion R/DSD_ReadCSV.R
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ DSD_ReadCSV <- function(file, k=NA, o=NA,
if(!is.null(take)) outlier <- match(outlier, take)
if(is.na(outlier)) stop("Invalid outlier column index!")
}
if(!is.null(outlier) && class(point[1,outlier])!="logical")
if(!is.null(outlier) && !is.logical(point[,outlier]))
stop("Outlier column must have logical values!")

# creating the DSD object
Expand Down

0 comments on commit 3ab49ab

Please sign in to comment.