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 c36aa9a commit 914f17eCopy full SHA for 914f17e
docs/source/user-guide/dataframe/index.rst
@@ -179,7 +179,7 @@ PyArrow
179
180
DataFrames are also iterable, yielding :class:`datafusion.RecordBatch`
181
objects lazily so you can loop over results directly without importing
182
-PyArrow::
+PyArrow:
183
184
.. code-block:: python
185
docs/source/user-guide/io/arrow.rst
@@ -74,6 +74,8 @@ Python library that accepts these can import a DataFusion DataFrame directly.
74
75
.. ipython:: python
76
77
+ from datafusion import col, lit
78
+
79
df = df.select((col("a") * lit(1.5)).alias("c"), lit("df").alias("d"))
80
pa.table(df)
81
0 commit comments