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
A DataFrame refers to a (logical) set of rows that share the same column names, similar to a `Pandas DataFrame <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html>`_.
71
71
DataFrames are typically created by calling a method on :py:class:`~datafusion.context.SessionContext`, such as :code:`read_csv`, and can then be modified by
@@ -75,14 +75,17 @@ and :py:func:`~datafusion.dataframe.DataFrame.limit` to build up a query definit
75
75
Expressions
76
76
-----------
77
77
78
-
The third statement uses :code:`Expressions` to build up a query definition.
78
+
The third statement uses :code:`Expressions` to build up a query definition. You can find
79
+
explanations for what the functions below do in the user documentation for
0 commit comments