We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f227484 commit e8620b0Copy full SHA for e8620b0
packages/bigframes/samples/snippets/multimodal_test.py
@@ -48,8 +48,8 @@ def test_multimodal_dataframe(gcs_dst_bucket: str) -> None:
48
df_image["updated"] = df_image["image"].blob.updated()
49
df_image
50
51
- # Filter images and display, you can also display audio and video types
52
- df_image[df_image["author"] == "alice"]["image"].blob.display()
+ # Filter images and display, you can also display audio and video types. Use width/height parameters to constrain window sizes.
+ df_image[df_image["author"] == "alice"]["image"].blob.display(width=400)
53
# [END bigquery_dataframes_multimodal_dataframe_merge]
54
55
# [START bigquery_dataframes_multimodal_dataframe_image_transform]
0 commit comments