Skip to content

Commit

Permalink
FIX/DOC: documented xlim and ylim arguments in Array.plot (closes #1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdementen committed Aug 1, 2024
1 parent be73ce7 commit fd5c4e8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions larray/core/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -7170,8 +7170,12 @@ def plot(self) -> PlotObject:
Values to use for the xticks
yticks : sequence
Values to use for the yticks
xlim : 2-tuple/list
ylim : 2-tuple/list
xlim : 2-tuple/list, optional
Limits (minimum and maximum values) on x axis. If this argument is not used, or None for
either bound, these are determined automatically from the data. Defaults to (None, None).
ylim : 2-tuple/list, optional
Limits (minimum and maximum values) on y axis. If this argument is not used, or None for
either bound, these are determined automatically from the data. Defaults to (None, None).
rot : int, default None
Rotation for ticks (xticks for vertical, yticks for horizontal plots)
fontsize : int, default None
Expand Down

0 comments on commit fd5c4e8

Please sign in to comment.