Schemas.right#

Schemas.right() Schema[source]#

Schema of the right data frame.

Examples

>>> import polars as pl
>>> from diffly import compare_frames
>>> left = pl.DataFrame({"id": [1], "value": [10.0]})
>>> right = pl.DataFrame({"id": [1], "score": [100]})
>>> compare_frames(left, right, primary_key="id").schemas.right()
{'id': Int64, 'score': Int64}