We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e57f1 commit 93f44a8Copy full SHA for 93f44a8
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