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
"""Display the blob content in the IPython Notebook environment. Only works for image type now.
54
68
55
69
.. note::
56
70
BigFrames Blob is still under experiments. It may not work and subject to change in the future.
57
71
58
72
Args:
59
73
n (int, default 3): number of sample blob objects to display.
74
+
content_type (str, default ""): content type of the blob. If unset, use the blob metadata of the storage. Possible values are "image", "audio" and "video".
60
75
"""
61
76
importbigframes.bigqueryasbbq
62
77
63
-
s=bigframes.series.Series(self._block).head(n)
78
+
# col name doesn't matter here. Rename to avoid column name conflicts
0 commit comments