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
This would calculate the sum of column A in a csv file that is possibly too large to read with currently existing methods. With this code snippet, the csv file would be streamed (in blocks) to a fst file first, and then a fsttable reference is returned.
(and a new file somebigfile.fst would also be created simultaneously)
The text was updated successfully, but these errors were encountered:
We will need a method
csv_to_fst
in thefst
package (planned). By using that method under the hood, we can define afsttable
object from a csv file:This would calculate the sum of column A in a csv file that is possibly too large to read with currently existing methods. With this code snippet, the csv file would be streamed (in blocks) to a fst file first, and then a
fsttable
reference is returned.(and a new file somebigfile.fst would also be created simultaneously)
The text was updated successfully, but these errors were encountered: