Skip to main content
Ctrl+K
PyFlink 1.20+vvr.11.7.dev0 documentation - Home PyFlink 1.20+vvr.11.7.dev0 documentation - Home
  • API Reference
  • Examples
  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
  • PyFlink DataStream
  • PyFlink DataFrame
    • DataFrame
    • DataFrame Creation
    • Input/Output
    • SQL
    • DataType
    • User Defined Functions
    • Configuration
    • GPU Support
    • AI / LLM
  • PyFlink Common
  • API Reference
  • PyFlink DataFrame
  • DataFrame Creation
  • pyflink.dataframe.convert.from_table

pyflink.dataframe.convert.from_table#

from_table(table: Table) → 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.convert.from_pandas

On this page
  • from_table()

This Page

  • Show Source

Created using Sphinx 7.4.7.

Built with the PyData Sphinx Theme 0.16.1.