Skip to content

Add parameters to histogram #1249

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

Merged
merged 27 commits into from
May 12, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ff8c2a4
add parameters to histogram.py
willschlitzer Apr 29, 2021
db6fe5c
Merge branch 'master' into parameters-histogram
willschlitzer May 4, 2021
9fb74ae
Apply suggestions from code review
willschlitzer May 4, 2021
97e46dc
Merge branch 'master' into parameters-histogram
willschlitzer May 5, 2021
fe13b38
add anotate docstring in histogram.py
willschlitzer May 5, 2021
552ab97
add barwidth docstring in histogram.py
willschlitzer May 5, 2021
aba75b6
style fix
willschlitzer May 5, 2021
a1ea5a3
add docstring for center, normal, cumulative
willschlitzer May 5, 2021
2d2df08
add docstring for step, type
willschlitzer May 5, 2021
d3fe05e
add docstring for extreme; wrap U/V/t
willschlitzer May 5, 2021
0e08ec7
Merge branch 'master' into parameters-histogram
willschlitzer May 5, 2021
37f9b4f
Apply suggestions from code review
willschlitzer May 6, 2021
45d6b1f
Apply suggestions from code review
willschlitzer May 7, 2021
a289d10
Merge branch 'master' into parameters-histogram
willschlitzer May 7, 2021
087f024
fixing parameter name, remove mention of "-w"
willschlitzer May 7, 2021
c01ca2a
remove part about calling normal multiple times
willschlitzer May 8, 2021
70fd79c
moving xy docstring
willschlitzer May 9, 2021
8d80c91
change the N parameter to "distribution"
willschlitzer May 9, 2021
a0d64f1
change the S parameter to "steps"
willschlitzer May 9, 2021
38d5335
Merge branch 'master' into parameters-histogram
willschlitzer May 9, 2021
a866f9d
Apply suggestions from code review
willschlitzer May 9, 2021
a59aedf
style fix
willschlitzer May 10, 2021
c5fda26
Update pygmt/src/histogram.py
willschlitzer May 11, 2021
49e2f40
change cumulative docstring
willschlitzer May 11, 2021
2f2b572
change docstring order
willschlitzer May 11, 2021
5920e93
Update pygmt/src/histogram.py
willschlitzer May 11, 2021
e8b57d1
Merge branch 'master' into parameters-histogram
willschlitzer May 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pygmt/src/histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@
A="horizontal",
B="frame",
C="cmap",
D="annotate",
E="bar_width",
F="center",
G="fill",
J="projection",
N="normal",
Q="cumulative",
R="region",
S="steps",
T="series",
W="pen",
z="type",
X="xshift",
Y="yshift",
c="panel",
l="label",
p="perspective",
Expand Down