Skip to content

Commit

Permalink
QuantFig axis issues. Fixes 137
Browse files Browse the repository at this point in the history
  • Loading branch information
santosjorge committed Sep 17, 2018
1 parent ca8a3d1 commit f892426
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1,341 deletions.
1,344 changes: 8 additions & 1,336 deletions Cufflinks Tutorial - Quantfig.ipynb

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions cufflinks/plotlytools.py
Expand Up @@ -1021,9 +1021,11 @@ def get_marker(marker={}):
open=self[d['open']].values.tolist(),
high=self[d['high']].values.tolist(),
low=self[d['low']].values.tolist(),
close=self[d['close']].values.tolist(),
x=self.index
)
close=self[d['close']].values.tolist())
if isinstance(self.index,pd.core.indexes.datetimes.DatetimeIndex):
_d['x']=self.index.astype('str')
else:
_d['x']=self.index
if 'name' in kw:
_d['name']=kw['name']

Expand Down
2 changes: 1 addition & 1 deletion cufflinks/version.py
@@ -1 +1 @@
__version__ = "0.14.3"
__version__ = "0.14.4"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
requires = f.read().split()

setup(name='cufflinks',
version='0.14.3',
version='0.14.4',
description='Productivity Tools for Plotly + Pandas',
author='Jorge Santos',
author_email='santos.jorge@gmail.com',
Expand Down

0 comments on commit f892426

Please sign in to comment.