Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete documentation for plot #666

Merged
merged 9 commits into from
Oct 25, 2020
Prev Previous commit
Next Next commit
Fix typo symbol to style
Co-Authored-By: Dongdong Tian <[email protected]>
  • Loading branch information
weiji14 and seisman committed Oct 24, 2020
commit 173587ebf744b6854c83726d72174c2bb3614fd3
13 changes: 6 additions & 7 deletions pygmt/base_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,13 +646,12 @@ def plot(self, x=None, y=None, data=None, sizes=None, direction=None, **kwargs):
If a symbol is selected and no symbol size given, then plot will
interpret the third column of the input data as symbol size. Symbols
whose size is <= 0 are skipped. If no symbols are specified then the
symbol code (see **symbol** below) must be present as last column in
the input. If **symbol** is not used, a line connecting the data points
will be drawn instead. To explicitly close polygons, use **close**.
Select a fill with **color**. If **color** is set, **pen** will control
whether the polygon outline is drawn or not. If a symbol is selected,
**color** and **pen** determines the fill and outline/no outline,
respectively.
symbol code (see **style** below) must be present as last column in the
input. If **style** is not used, a line connecting the data points will
be drawn instead. To explicitly close polygons, use **close**. Select a
fill with **color**. If **color** is set, **pen** will control whether
the polygon outline is drawn or not. If a symbol is selected, **color**
and **pen** determines the fill and outline/no outline, respectively.
weiji14 marked this conversation as resolved.
Show resolved Hide resolved

Full option list at :gmt-docs:`plot.html`

Expand Down