Other DataFrames#
ITables can render other types of DataFrames than Pandas and Polars if you have Narwhals installed. If you would like to see more examples DataFrames here, please reach out to us on GitHub.
import modin.pandas as mpd
import pyarrow as pa
import itables
PyArrow#
itables.show(pa.table({"A": [1, 2, 3], "B": [4.1, 5.2, 6.3]}))
| Loading ITables v2.6.0.dev0 from the internet... (need help?) |
Modin#
itables.show(mpd.DataFrame({"A": [1, 2, 3], "B": [4.1, 5.2, 6.3]}))
| Loading ITables v2.6.0.dev0 from the internet... (need help?) |