-
Notifications
You must be signed in to change notification settings - Fork 75
Closed as not planned
Labels
bugSomething isn't workingSomething isn't workingcsvCSV / delim related issuesCSV / delim related issuesenhancementNew feature or requestNew feature or request
Milestone
Description
This is a common practice in Python, Excel and other data wrangling environments.
Currently, DataFrame.readCSV("path/to/directory")
results in a strange DataFrame with a single column containing all the filenames in the directory (where the first file is the column name...): #508
What should happen is something like:
Path("path/to/dir").listDirectoryEntries("*.csv").map {
DataFrame.readCSV(it.toFile())
}.concat()
This should work in the gradle/ksp/compiler plugin too
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingcsvCSV / delim related issuesCSV / delim related issuesenhancementNew feature or requestNew feature or request