Breadroll.open.local<T>(...)
This function opens the local data source, ie. the file on disk and return a Dataframe
Parameter
filepath: string
- the location of the file.sep: string
- the delimeter or seperator
Returns
Promise<Dataframe<T>>
const df: Dataframe<T> = await csv.open.local<T>("./path/to/file.csv", ",");