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
/jupyter/.kernels/apache-beam-2.61.0/lib/python3.10/site-packages/apache_beam/runners/interactive/display/pcoll_visualization.py:423: FutureWarning: DataFrame.applymap has been deprecated. Use DataFrame.map instead.
rows = data.applymap(lambda x: str(x)).to_dict('split')['data']
Issue Priority
Priority: 2 (default / most normal work should be filed as P2)
Issue Components
Component: Python SDK
Component: Java SDK
Component: Go SDK
Component: Typescript SDK
Component: IO connector
Component: Beam YAML
Component: Beam examples
Component: Beam playground
Component: Beam katas
Component: Website
Component: Infrastructure
Component: Spark Runner
Component: Flink Runner
Component: Samza Runner
Component: Twister2 Runner
Component: Hazelcast Jet Runner
Component: Google Cloud Dataflow Runner
The text was updated successfully, but these errors were encountered:
Hi Can you assign this task to me. I have checked that this is in python sdk this is the file with warnings.catch_warnings():
# TODO(yathu) switch to use DataFrame.map when dropped pandas<2.1 support
warnings.filterwarnings(
"ignore", message="DataFrame.applymap has been deprecated")
data = data.applymap(lambda x: str(x) if isinstance(x, dict) else x)
What needs to happen?
Fix this warning:
Issue Priority
Priority: 2 (default / most normal work should be filed as P2)
Issue Components
The text was updated successfully, but these errors were encountered: