简体   繁体   中英

How to fix mpl_finance package for MatPlotLib?

Getting this error message:

MatplotlibDeprecationWarning: The finance module has been deprecated in mpl 2.0 and will be removed in mpl 2.2. Please use the module mpl_finance instead.

How do I put in place the mpl_finance package instead. I have it installed in pip, but what is the proper import phraseology?

import datetime as dt
import matplotlib.pyplot as plt
from matplotlib import style
from matplotlib.finance import candlestick_ohlc
import matplotlib.dates as mdates
import pandas as pd
import pandas_datareader.data as web
from googlefinance import getQuotes
import json
from datetime import datetime
from forex_python.converter import CurrencyRates
from yahoo_finance import Share

All code for matplotlib.finance moved to a separate repository . Here is an example of usage. To answer your question:

from mpl_finance import candlestick_ohlc

To import a module which is installed through pip with the name x you would mostly want to do import x .

So, here

import mpl_finance

or to get one of its functions, eg

from mpl_finance import candlestick_ohlc

新版本可以在这里找到: https : //pypi.org/project/mplfinance/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM