BigQuery DataFrames (BigFrames)
Section Navigation
Pickle (serialize) object to file.
Examples:
>>>df=bpd.DataFrame({'col1':[1,2],'col2':[3,4]})>>>gcs_bucket="gs://bigframes-dev-testing/sample_pickle_gcs.pkl">>>df.to_pickle(path=gcs_bucket)
path (str) – File path where the pickled object will be stored.
allow_large_results (bool,default None) – If not None, overrides the global setting to allow or disallowlarge query results over the default size limit of 10 GB.
DataFrame.to_pickle()