Skip to content

Commit e84617c

Browse files
committed
Change NaN to empty in CSV file
1 parent 6c47431 commit e84617c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/ModelSelection/core/csv.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ function export_csv(
112112
rows = vcat(permutedims(header), data)
113113
if filename !== nothing
114114
file = open(filename, "w")
115+
replace!(rows, NaN => "")
115116
writedlm(file, rows, ',')
116117
close(file)
117118
end

0 commit comments

Comments
 (0)