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
Currently we are loading data from a CSV and we have to load the entire CSV into memory. Since this example is running on mybinder, which has limited memory ~1GB (voila-dashboards/voila#521 (comment)), we want to be careful with memory usage.
Switching to parquet (and adding the pyarrow requirement) will enable us to load data from select cells (or genes in a transposed parquet) instead of loading everything.
The text was updated successfully, but these errors were encountered:
Currently we are loading data from a CSV and we have to load the entire CSV into memory. Since this example is running on mybinder, which has limited memory ~1GB (voila-dashboards/voila#521 (comment)), we want to be careful with memory usage.
Switching to parquet (and adding the pyarrow requirement) will enable us to load data from select cells (or genes in a transposed parquet) instead of loading everything.
The text was updated successfully, but these errors were encountered: