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

`Future warning trying candles.ipynb on ipython4 / pandas 0.17rc2 #24

Closed
stonebig opened this issue Oct 6, 2015 · 3 comments
Closed

Comments

@stonebig
Copy link

stonebig commented Oct 6, 2015

# Split up the data into x and y points

from bqplot.traits import convert_to_date

​

dates_all = []

prices = []

for item in price_data:

    dates_all.append(item[0])

    prices.append(item[1])

dates_all = convert_to_date(dates_all)

​

prices2 = []

dates_all2 = []

for item in price_data2:

    dates_all2.append(item[0])

    prices2.append(item[1])



dates_all2 = convert_to_date(dates_all2)

D:\result_tests\winpython-3.4.3.6Qt5_build3.amd64\python-3.4.3.amd64\lib\site-packages\bqplot\traits.py:184: FutureWarning: the coerce=True keyword is deprecated, use errors='coerce' instead
  temp_val = pd.to_datetime(array, coerce=True, box=False, infer_datetime_format=True)
@stonebig stonebig changed the title warning trying candles.ipynb on ipython4 `Future warning trying candles.ipynb on ipython4 / pandas 0.17rc2 Oct 6, 2015
@SylvainCorlay
Copy link
Member

@stonebig thanks for reporting. I did not know about this. Is it only with Pandas 0.17 ?

@stonebig
Copy link
Author

The shim warning message is in what's new of 0.17, if I search right: https://github.com/pydata/pandas/search?utf8=%E2%9C%93&q=the+coerce%3DTrue+keyword+is+deprecated

@dmadeka
Copy link
Contributor

dmadeka commented Jul 6, 2016

@stonebig This doesnt seem to be an issue anymore. Closing

@dmadeka dmadeka closed this as completed Jul 6, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants