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

remove deprecated function and change non-working code #3

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

Conversation

jakemraz
Copy link

  1. about fix_yahoo_finance
    it returns "ValueError: No objects to concatenate" error.
    so I changed it to using yfinance.
    and it works fine.

  2. about result = pd.concat([df1, df2], axis=1, join_axes=[df1.index])
    'join_axes' was deprecated in version 0.25
    so change it to be below
    df3 = pd.concat([df1, df2], axis=1)
    df3 = df3.reindex(df1.index)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant