escodrinyar.Plot.pair#

Plot.pair(x=None, y=None, wrap=None, cross=True)#

Produce subplots by pairing multiple x and/or y variables.

Parameters:
x, ysequence(s) of data vectors or identifiers

Variables that will define the grid of subplots.

wrapint

When using only x or y, “wrap” subplots across a two-dimensional grid with this many columns (when using x) or rows (when using y).

crossbool

When False, zip the x and y lists such that the first subplot gets the first pair, the second gets the second pair, etc. Otherwise, create a two-dimensional grid from the cartesian product of the lists.

Notes

The docstring of this function is autogenerated from seaborn.objects.Plot.pair().