Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
  • PyFlink DataFrame
    • DataFrame
    • DataFrame Creation
    • Input/Output
    • SQL
    • Data Types
    • User Defined Functions
    • Configuration
    • Catalog
    • GPU Support
    • AI / LLM
  • PyFlink Multimodal
  • PyFlink DataStream
  • PyFlink Common

pyflink.dataframe.from_table#

from_table(table: Table) → pyflink.dataframe.dataframe.DataFrame[source]#

Create a DataFrame from a PyFlink Table.

Parameters

table – The PyFlink Table to wrap.

Returns

A new DataFrame instance.

Example::
>>> import pyflink.dataframe as pf
>>> table = t_env.from_elements([(1, 'a')], ['id', 'name'])
>>> df = pf.from_table(table)

previous

DataFrame Creation

next

pyflink.dataframe.from_pandas

Show Source

Created using Sphinx 4.5.0.