We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 24f83b0 + f95ce86 commit 8d642e7Copy full SHA for 8d642e7
2 files changed
README.md
@@ -1,5 +1,3 @@
1
-[](https://travis-ci.org/hapi-server/plot-python)
2
-
3
**HAPI plotting client for Python 3.6+**
4
5
# Installation
hapiplot/hapiplot.py
@@ -676,6 +676,12 @@ def hapiplot(*args, **kwargs):
676
if nodata == True:
677
tsopts['nodata'] = True
678
679
+ if remove_mean:
680
+ with rc_context(rc=opts['rcParams']):
681
+ fig = timeseries(Time, y-y_mean, **tsopts)
682
+ else:
683
684
+ fig = timeseries(Time, y, **tsopts)
685
if remove_mean:
686
with rc_context(rc=opts['rcParams']):
687
fig = timeseries(Time, y-y_mean, **tsopts)
0 commit comments