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

Replace deprecated pandas Series.as_matrix() with Series.values() #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jul 19, 2018

  1. Replace deprecated pandas Series.as_matrix() with Series.values()

    I'm getting this error. Seems as though qpython requires a straight swap from pandas' `Series.as_matrix()` deprecated method to `Series.values()` (suggested in the [docs](https://pandas.pydata.org/pandas-docs/version/0.23/generated/pandas.Series.as_matrix.html))
    
    ```
    python3.6/site-packages/qpython/_pandas.py:61: FutureWarning: Method .as_matrix will be removed in a future version. Use .values instead.
      keys = keys if not isinstance(keys, pandas.Series) else keys.as_matrix()
    ```
    janbaykara authored Jul 19, 2018
    Configuration menu
    Copy the full SHA
    8b8f552 View commit details
    Browse the repository at this point in the history