You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now, the synchronous version loads the entire file into memory in order to create the data frame. Should we change this?
in contrast to some other modules, I chose to make the synchronous version of the function the main export and delegated the asynchronous one to a property given the main use case being the analysis of data in a REPL environment.
the analogous function in R provides parameters to specify the row- and column names. Should we offer something similar?
Any other suggestions?
The text was updated successfully, but these errors were encountered:
For the synchronous version, you don't really have a choice. You have to load the entire file (i.e., do some synchronous file system operation).
I would probably still make the async version the main export. For a REPL, e.g., a browser-environment with virtual files, we can, under-the-hood, make the default behavior sync. Meaning, we will have some control over which method is exposed as "the" interface.
Specifying row and column names could be left to df methods. Won't really know until df is brought up to speed.
We will need to prioritize how soon df is refactored and integrated into the roadmap. Modules such as this one are useful and will be desired once a REPL env is provided.
Open questions:
Any other suggestions?
The text was updated successfully, but these errors were encountered: