We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15fa280 commit 860fc14Copy full SHA for 860fc14
src/containers/tabledataset.jl
@@ -19,7 +19,7 @@ struct TableDataset{T} <: AbstractDataContainer
19
end
20
21
TableDataset(table::T) where {T} = TableDataset{T}(table)
22
-TableDataset(path::AbstractPath) = TableDataset(DataFrame(CSV.File(path)))
+TableDataset(path::AbstractString) = TableDataset(DataFrame(CSV.File(path)))
23
24
# slow accesses based on Tables.jl
25
_getobs_row(x, i) = first(Iterators.peel(Iterators.drop(x, i - 1)))
0 commit comments