Skip to content

Commit

Permalink
update function params
Browse files Browse the repository at this point in the history
  • Loading branch information
tlint101 committed Dec 5, 2024
1 parent 8f1cae0 commit 138e756
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions py50/plotcurve.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,12 @@ def multi_curve_plot(
:param line_color: str
Takes a list of colors. By default, it uses the CBPALETTE. List can contain name of colors or colors in hex
code.
:param markersize:
Set the marker size.
:param line_width: int
Set width of lines in plot.
:param errorbar:
Set the type of seaborn errorbar to use. Defaults to 'sd'.
:param marker: list
Takes a list for point markers. Marker options can be found here: https://matplotlib.org/stable/api/markers_api.html
:param legend: bool
Expand Down Expand Up @@ -891,6 +895,7 @@ def grid_curve_plot(
ymin: int = None,
line_color: list = CBPALETTE,
line_width: int = 1.5,
errorbar: str = "sd",
box: bool = False,
box_color: str = "gray",
box_intercept: int = 50,
Expand Down Expand Up @@ -939,6 +944,8 @@ def grid_curve_plot(
colors or colors in hex code.
:param line_width: int
Set width of lines in plot.
:param errorbar:
Set the type of seaborn errorbar to use. Defaults to 'sd'.
:param box: bool
Draw a box to highlight a specific location. If box = True, then the box_color, and box_intercept MUST ALSO
BE GIVEN.
Expand Down

0 comments on commit 138e756

Please sign in to comment.