Skip to content

Commit fd5c4e8

Browse files
committed
FIX/DOC: documented xlim and ylim arguments in Array.plot (closes #1054)
1 parent be73ce7 commit fd5c4e8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

larray/core/array.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7170,8 +7170,12 @@ def plot(self) -> PlotObject:
71707170
Values to use for the xticks
71717171
yticks : sequence
71727172
Values to use for the yticks
7173-
xlim : 2-tuple/list
7174-
ylim : 2-tuple/list
7173+
xlim : 2-tuple/list, optional
7174+
Limits (minimum and maximum values) on x axis. If this argument is not used, or None for
7175+
either bound, these are determined automatically from the data. Defaults to (None, None).
7176+
ylim : 2-tuple/list, optional
7177+
Limits (minimum and maximum values) on y axis. If this argument is not used, or None for
7178+
either bound, these are determined automatically from the data. Defaults to (None, None).
71757179
rot : int, default None
71767180
Rotation for ticks (xticks for vertical, yticks for horizontal plots)
71777181
fontsize : int, default None

0 commit comments

Comments
 (0)