I saved a disk frame to its output directory and then restarted my R session.
I'd like to read the existing disk frame instead of recreating it elsewhere.
How might I be able to accomplish this? My folder is called outdir.df
This is how I saved the disk frame
mydf <- csv_to_disk.frame("myfile.csv",
in_chunk_size = 1e8,
shardby = "col",
outdir = "diskframe/outdir.df"
)