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
Computation deferred. Computation will process 28.9 kB
27
28
28
29
Users can also get a dry run of the job by accessing the query_job property before they've run the job. This will return a dry run instance of the job they can inspect.
30
+
29
31
>>> df.query_job.total_bytes_processed
30
32
28947
31
33
32
34
User can execute the job by calling .to_pandas()
35
+
33
36
>>> # df.to_pandas()
34
37
35
38
Reset repr_mode option
39
+
36
40
>>> bpd.options.display.repr_mode = "head"
37
41
38
42
Can also set the progress_bar option to see the progress bar in terminal,
43
+
39
44
>>> bpd.options.display.progress_bar = "terminal"
40
45
41
46
notebook,
47
+
42
48
>>> bpd.options.display.progress_bar = "notebook"
43
49
44
50
or just remove it.
51
+
45
52
>>> bpd.options.display.progress_bar = None
46
53
47
54
Setting to default value "auto" will detect and show progress bar automatically.
0 commit comments