Commit 22d3f5ff authored by Delaigue Olivier's avatar Delaigue Olivier
Browse files

fix(Utils): read strings as character in the table with model features loaded by .FeatModels

- to be OK with R < 4.0.0
Refs #106
Showing with 1 addition and 1 deletion
+1 -1
......@@ -20,7 +20,7 @@
## table of feature models
.FeatModels <- function() {
path <- system.file("modelsFeatures/FeatModelsGR.csv", package = "airGR")
read.table(path, header = TRUE, sep = ";")
read.table(path, header = TRUE, sep = ";", stringsAsFactors = FALSE)
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment