@@ -26,10 +26,10 @@ It offers a familiar API similar to pandas and other DataFrame libraries, but wi
2626and Arrow.
2727
2828A DataFrame represents a logical plan that can be composed through operations like filtering, projection, and aggregation.
29- The actual execution happens when terminal operations like `collect() ` or `show() ` are called.
29+ The actual execution happens when terminal operations like `` collect() `` or `` show() ` ` are called.
3030
3131Basic Usage
32- ----------
32+ -----------
3333
3434.. code-block :: python
3535
@@ -55,17 +55,17 @@ Basic Usage
5555 df.show()
5656
5757 HTML Rendering
58- -------------
58+ --------------
5959
6060When working in Jupyter notebooks or other environments that support HTML rendering, DataFrames will
6161automatically display as formatted HTML tables, making it easier to visualize your data.
6262
63- The `_repr_html_ ` method is called automatically by Jupyter to render a DataFrame. This method
63+ The `` _repr_html_ ` ` method is called automatically by Jupyter to render a DataFrame. This method
6464controls how DataFrames appear in notebook environments, providing a richer visualization than
6565plain text output.
6666
6767Customizing HTML Rendering
68- -------------------------
68+ --------------------------
6969
7070You can customize how DataFrames are rendered in HTML by configuring the formatter:
7171
@@ -87,7 +87,7 @@ You can customize how DataFrames are rendered in HTML by configuring the formatt
8787 The formatter settings affect all DataFrames displayed after configuration.
8888
8989Custom Style Providers
90- ---------------------
90+ ----------------------
9191
9292For advanced styling needs, you can create a custom style provider:
9393
@@ -114,7 +114,7 @@ For advanced styling needs, you can create a custom style provider:
114114 configure_formatter(style_provider = MyStyleProvider())
115115
116116 Creating a Custom Formatter
117- --------------------------
117+ ---------------------------
118118
119119For complete control over rendering, you can implement a custom formatter:
120120
@@ -138,7 +138,7 @@ For complete control over rendering, you can implement a custom formatter:
138138 custom_html = formatter.format_html(batches, schema)
139139
140140 Managing Formatters
141- ------------------
141+ -------------------
142142
143143Reset to default formatting:
144144
@@ -160,7 +160,7 @@ Get the current formatter settings:
160160 print (formatter.theme)
161161
162162 Contextual Formatting
163- --------------------
163+ ---------------------
164164
165165You can also use a context manager to temporarily change formatting settings:
166166
0 commit comments