Python matplotlib.dates.DateFormatter() Examples
The following are 30
code examples of matplotlib.dates.DateFormatter().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
matplotlib.dates
, or try the search function
.
Example #1
Source File: test_dates.py From ImageFusion with MIT License | 6 votes |
def test_empty_date_with_year_formatter(): # exposes sf bug 2861426: # https://sourceforge.net/tracker/?func=detail&aid=2861426&group_id=80706&atid=560720 # update: I am no longer believe this is a bug, as I commented on # the tracker. The question is now: what to do with this test import matplotlib.dates as dates fig = plt.figure() ax = fig.add_subplot(111) yearFmt = dates.DateFormatter('%Y') ax.xaxis.set_major_formatter(yearFmt) with tempfile.TemporaryFile() as fh: assert_raises(ValueError, fig.savefig, fh)
Example #2
Source File: machFX7.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) #ax1.plot(date,((bid+ask)/2)) #ax1.plot(date,percentChange(ask[0],ask),'r') ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) ##### plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ####### ax1_2 = ax1.twinx() #ax1_2.plot(date, (ask-bid)) ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) #ax1_2.set_ylim(0, 3*ask.max()) ####### plt.subplots_adjust(bottom=.23) #plt.grid(True) plt.show()
Example #3
Source File: machFX2.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): date,bid,ask = np.loadtxt('GBPUSD1d.txt', unpack=True, delimiter=',', converters={0:mdates.strpdate2num('%Y%m%d%H%M%S')}) fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.subplots_adjust(bottom=.23) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) plt.grid(True) plt.show()
Example #4
Source File: machFX14.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #5
Source File: test_dates.py From coffeegrindsize with MIT License | 6 votes |
def test_empty_date_with_year_formatter(): # exposes sf bug 2861426: # https://sourceforge.net/tracker/?func=detail&aid=2861426&group_id=80706&atid=560720 # update: I am no longer believe this is a bug, as I commented on # the tracker. The question is now: what to do with this test import matplotlib.dates as dates fig = plt.figure() ax = fig.add_subplot(111) yearFmt = dates.DateFormatter('%Y') ax.xaxis.set_major_formatter(yearFmt) with tempfile.TemporaryFile() as fh: with pytest.raises(ValueError): fig.savefig(fh)
Example #6
Source File: get_coin_data.py From crypto_predictor with MIT License | 6 votes |
def get_graph(df, coin_name, day_interval, dates=True): import matplotlib.dates as mdates from matplotlib import pyplot as plt fig, ax = plt.subplots(figsize=(10, 5)) plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%a')) if dates: plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%d-%b')) plt.gca().xaxis.set_major_locator(mdates.DayLocator(interval=day_interval)) plt.gcf().autofmt_xdate() plt.xlabel('Date', fontsize=14) plt.ylabel('Price', fontsize=14) plt.title('{} Price History'.format(coin_name)) y = df[coin_name] plt.plot(df['date'], y)
Example #7
Source File: machFX8.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) #ax1.plot(date,((bid+ask)/2)) #ax1.plot(date,percentChange(ask[0],ask),'r') ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) ##### plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ####### ax1_2 = ax1.twinx() #ax1_2.plot(date, (ask-bid)) ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) #ax1_2.set_ylim(0, 3*ask.max()) ####### plt.subplots_adjust(bottom=.23) #plt.grid(True) plt.show()
Example #8
Source File: machFX16.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #9
Source File: rendering.py From simglucose with MIT License | 6 votes |
def adjust_xlim(ax, timemax, xlabel=False): xlim = mdates.num2date(ax.get_xlim()) update = False # remove timezone awareness to make them comparable timemax = timemax.replace(tzinfo=None) xlim[0] = xlim[0].replace(tzinfo=None) xlim[1] = xlim[1].replace(tzinfo=None) if timemax > xlim[1] - timedelta(minutes=30): xmax = xlim[1] + timedelta(hours=6) update = True if update: ax.set_xlim([xlim[0], xmax]) for spine in ax.spines.values(): ax.draw_artist(spine) ax.draw_artist(ax.xaxis) if xlabel: ax.xaxis.set_minor_locator(mdates.AutoDateLocator()) ax.xaxis.set_minor_formatter(mdates.DateFormatter('%H:%M\n')) ax.xaxis.set_major_locator(mdates.DayLocator()) ax.xaxis.set_major_formatter(mdates.DateFormatter('\n%b %d'))
Example #10
Source File: machFX10.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #11
Source File: report.py From simglucose with MIT License | 6 votes |
def ensemble_BG(BG, ax=None, plot_var=False, nstd=3): mean_curve = BG.transpose().mean() std_curve = BG.transpose().std() up_env = mean_curve + nstd * std_curve down_env = mean_curve - nstd * std_curve # t = BG.index.to_pydatetime() t = pd.to_datetime(BG.index) if ax is None: fig, ax = plt.subplots(1) if plot_var and not std_curve.isnull().all(): ax.fill_between( t, up_env, down_env, alpha=0.5, label='+/- {0}*std'.format(nstd)) for p in BG: ax.plot_date( t, BG[p], '-', color='grey', alpha=0.5, lw=0.5, label='_nolegend_') ax.plot(t, mean_curve, lw=2, label='Mean Curve') ax.xaxis.set_minor_locator(mdates.HourLocator(interval=3)) ax.xaxis.set_minor_formatter(mdates.DateFormatter('%H:%M\n')) ax.xaxis.set_major_locator(mdates.DayLocator()) ax.xaxis.set_major_formatter(mdates.DateFormatter('\n%b %d')) ax.axhline(70, c='green', linestyle='--', label='Hypoglycemia', lw=1) ax.axhline(180, c='red', linestyle='--', label='Hyperglycemia', lw=1) ax.set_xlim([t[0], t[-1]]) ax.set_ylim([BG.min().min() - 10, BG.max().max() + 10]) ax.legend() ax.set_ylabel('Blood Glucose (mg/dl)') # fig.autofmt_xdate() return ax
Example #12
Source File: test_dates.py From coffeegrindsize with MIT License | 6 votes |
def test_DateFormatter(): import matplotlib.testing.jpl_units as units units.register() # Lets make sure that DateFormatter will allow us to have tick marks # at intervals of fractional seconds. t0 = datetime.datetime(2001, 1, 1, 0, 0, 0) tf = datetime.datetime(2001, 1, 1, 0, 0, 1) fig = plt.figure() ax = plt.subplot(111) ax.set_autoscale_on(True) ax.plot([t0, tf], [0.0, 1.0], marker='o') # rrule = mpldates.rrulewrapper( dateutil.rrule.YEARLY, interval=500 ) # locator = mpldates.RRuleLocator( rrule ) # ax.xaxis.set_major_locator( locator ) # ax.xaxis.set_major_formatter( mpldates.AutoDateFormatter(locator) ) ax.autoscale_view() fig.autofmt_xdate()
Example #13
Source File: test_dates.py From python3_ios with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_DateFormatter(): import matplotlib.testing.jpl_units as units units.register() # Lets make sure that DateFormatter will allow us to have tick marks # at intervals of fractional seconds. t0 = datetime.datetime(2001, 1, 1, 0, 0, 0) tf = datetime.datetime(2001, 1, 1, 0, 0, 1) fig = plt.figure() ax = plt.subplot(111) ax.set_autoscale_on(True) ax.plot([t0, tf], [0.0, 1.0], marker='o') # rrule = mpldates.rrulewrapper( dateutil.rrule.YEARLY, interval=500 ) # locator = mpldates.RRuleLocator( rrule ) # ax.xaxis.set_major_locator( locator ) # ax.xaxis.set_major_formatter( mpldates.AutoDateFormatter(locator) ) ax.autoscale_view() fig.autofmt_xdate()
Example #14
Source File: plots.py From ee-atmcorr-timeseries with Apache License 2.0 | 6 votes |
def plot_timeseries(DF, ax, name, startDate, stopDate, ylim=False): """ plots timeseries graphs """ # original time series ax.plot(DF[name],color='#1f77b4') ax.set_ylabel(name) ax.set_ylim(ylim) ax.set_xlim(pd.datetime.strptime(startDate,'%Y-%m-%d'),\ pd.datetime.strptime(stopDate,'%Y-%m-%d')) # boxcar average ax.plot(DF[name].rolling(180).mean(),color='red') # make the dates exact ax.fmt_xdata = mdates.DateFormatter('%Y-%m-%d')
Example #15
Source File: test_dates.py From ImageFusion with MIT License | 6 votes |
def test_DateFormatter(): import matplotlib.testing.jpl_units as units units.register() # Lets make sure that DateFormatter will allow us to have tick marks # at intervals of fractional seconds. t0 = datetime.datetime(2001, 1, 1, 0, 0, 0) tf = datetime.datetime(2001, 1, 1, 0, 0, 1) fig = plt.figure() ax = plt.subplot(111) ax.set_autoscale_on(True) ax.plot([t0, tf], [0.0, 1.0], marker='o') # rrule = mpldates.rrulewrapper( dateutil.rrule.YEARLY, interval=500 ) # locator = mpldates.RRuleLocator( rrule ) # ax.xaxis.set_major_locator( locator ) # ax.xaxis.set_major_formatter( mpldates.AutoDateFormatter(locator) ) ax.autoscale_view() fig.autofmt_xdate()
Example #16
Source File: machFX12.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #17
Source File: test_dates.py From neural-network-animation with MIT License | 6 votes |
def test_DateFormatter(): import matplotlib.testing.jpl_units as units units.register() # Lets make sure that DateFormatter will allow us to have tick marks # at intervals of fractional seconds. t0 = datetime.datetime(2001, 1, 1, 0, 0, 0) tf = datetime.datetime(2001, 1, 1, 0, 0, 1) fig = plt.figure() ax = plt.subplot(111) ax.set_autoscale_on(True) ax.plot([t0, tf], [0.0, 1.0], marker='o') # rrule = mpldates.rrulewrapper( dateutil.rrule.YEARLY, interval=500 ) # locator = mpldates.RRuleLocator( rrule ) # ax.xaxis.set_major_locator( locator ) # ax.xaxis.set_major_formatter( mpldates.AutoDateFormatter(locator) ) ax.autoscale_view() fig.autofmt_xdate()
Example #18
Source File: test_dates.py From neural-network-animation with MIT License | 6 votes |
def test_empty_date_with_year_formatter(): # exposes sf bug 2861426: # https://sourceforge.net/tracker/?func=detail&aid=2861426&group_id=80706&atid=560720 # update: I am no longer believe this is a bug, as I commented on # the tracker. The question is now: what to do with this test import matplotlib.dates as dates fig = plt.figure() ax = fig.add_subplot(111) yearFmt = dates.DateFormatter('%Y') ax.xaxis.set_major_formatter(yearFmt) with tempfile.TemporaryFile() as fh: assert_raises(ValueError, fig.savefig, fh)
Example #19
Source File: test_dates.py From twitter-stock-recommendation with MIT License | 6 votes |
def test_DateFormatter(): import matplotlib.testing.jpl_units as units units.register() # Lets make sure that DateFormatter will allow us to have tick marks # at intervals of fractional seconds. t0 = datetime.datetime(2001, 1, 1, 0, 0, 0) tf = datetime.datetime(2001, 1, 1, 0, 0, 1) fig = plt.figure() ax = plt.subplot(111) ax.set_autoscale_on(True) ax.plot([t0, tf], [0.0, 1.0], marker='o') # rrule = mpldates.rrulewrapper( dateutil.rrule.YEARLY, interval=500 ) # locator = mpldates.RRuleLocator( rrule ) # ax.xaxis.set_major_locator( locator ) # ax.xaxis.set_major_formatter( mpldates.AutoDateFormatter(locator) ) ax.autoscale_view() fig.autofmt_xdate()
Example #20
Source File: machFX15.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #21
Source File: machFX11.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #22
Source File: machFX9.py From Pattern-Recognition-for-Forex-Trading with MIT License | 6 votes |
def graphRawFX(): fig=plt.figure(figsize=(10,7)) ax1 = plt.subplot2grid((40,40), (0,0), rowspan=40, colspan=40) ax1.plot(date,bid) ax1.plot(date,ask) ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d %H:%M:%S')) plt.grid(True) for label in ax1.xaxis.get_ticklabels(): label.set_rotation(45) plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) ax1_2 = ax1.twinx() ax1_2.fill_between(date, 0, (ask-bid), facecolor='g',alpha=.3) plt.subplots_adjust(bottom=.23) plt.show()
Example #23
Source File: report.py From simglucose with MIT License | 6 votes |
def ensemblePlot(df): df_BG = df.unstack(level=0).BG df_CGM = df.unstack(level=0).CGM df_CHO = df.unstack(level=0).CHO fig = plt.figure() ax1 = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) ax1 = ensemble_BG(df_BG, ax=ax1, plot_var=True, nstd=1) ax2 = ensemble_BG(df_CGM, ax=ax2, plot_var=True, nstd=1) # t = df_CHO.index.to_pydatetime() t = pd.to_datetime(df_CHO.index) ax3.plot(t, df_CHO) ax1.tick_params(labelbottom=False) ax2.tick_params(labelbottom=False) ax3.xaxis.set_minor_locator(mdates.AutoDateLocator()) ax3.xaxis.set_minor_formatter(mdates.DateFormatter('%H:%M\n')) ax3.xaxis.set_major_locator(mdates.DayLocator()) ax3.xaxis.set_major_formatter(mdates.DateFormatter('\n%b %d')) ax3.set_xlim([t[0], t[-1]]) ax1.set_ylabel('Blood Glucose (mg/dl)') ax2.set_ylabel('CGM (mg/dl)') ax3.set_ylabel('CHO (g)') return fig, ax1, ax2, ax3
Example #24
Source File: priceBehaviorAnalysis.py From AirTicketPredicting with MIT License | 5 votes |
def getDatasForOneRouteForOneDepartureDate(route, departureDate): X = getOneRouteData(datas, route) minDeparture = np.amin(X[:,8]) maxDeparture = np.amax(X[:,8]) print minDeparture print maxDeparture # get specific departure date datas X = X[np.where(X[:, 8]==departureDate)[0], :] # get the x values xaxis = X[:,9] # observed date state print xaxis xaxis = departureDate-1-xaxis print xaxis tmp = xaxis startdate = "20151109" xaxis = [pd.to_datetime(startdate) + pd.DateOffset(days=state) for state in tmp] print xaxis # get the y values yaxis = X[:,12] # every monday mondays = WeekdayLocator(MONDAY) # every 3rd month months = MonthLocator(range(1, 13), bymonthday=1, interval=01) days = WeekdayLocator(byweekday=1, interval=2) monthsFmt = DateFormatter("%b. %d, %Y") fig, ax = plt.subplots() ax.plot_date(xaxis, yaxis, 'r--') ax.plot_date(xaxis, yaxis, 'bo') ax.xaxis.set_major_locator(days) ax.xaxis.set_major_formatter(monthsFmt) #ax.xaxis.set_minor_locator(mondays) ax.autoscale_view() #ax.xaxis.grid(False, 'major') #ax.xaxis.grid(True, 'minor') ax.grid(True) plt.xlabel('Date') plt.ylabel('Price in Euro') fig.autofmt_xdate() plt.show() """ # plot line1, = plt.plot(xaxis, yaxis, 'r--') line2, = plt.plot(xaxis, yaxis, 'bo') #plt.legend([line2], ["Price"]) plt.xlabel('States') plt.ylabel('Price in Euro') plt.show() """
Example #25
Source File: tearsheet.py From qstrader with MIT License | 5 votes |
def _plot_equity(self, strat_stats, bench_stats=None, ax=None, **kwargs): """ Plots cumulative rolling returns versus some benchmark. """ def format_two_dec(x, pos): return '%.2f' % x equity = strat_stats['cum_returns'] if ax is None: ax = plt.gca() y_axis_formatter = FuncFormatter(format_two_dec) ax.yaxis.set_major_formatter(FuncFormatter(y_axis_formatter)) ax.xaxis.set_tick_params(reset=True) ax.yaxis.grid(linestyle=':') ax.xaxis.set_major_locator(mdates.YearLocator(1)) ax.xaxis.set_major_formatter(mdates.DateFormatter('%Y')) ax.xaxis.grid(linestyle=':') equity.plot(lw=2, color='green', alpha=0.6, x_compat=False, label='Strategy', ax=ax, **kwargs) if bench_stats is not None: bench_stats['cum_returns'].plot( lw=2, color='gray', alpha=0.6, x_compat=False, label='Benchmark', ax=ax, **kwargs ) ax.axhline(1.0, linestyle='--', color='black', lw=1) ax.set_ylabel('Cumulative returns') ax.legend(loc='best') ax.set_xlabel('') plt.setp(ax.get_xticklabels(), visible=True, rotation=0, ha='center') return ax
Example #26
Source File: roll_yield.py From akshare with MIT License | 5 votes |
def _plot(plot_df): fig = plt.figure(1, dpi=300) ax = fig.add_subplot(111) ax.xaxis.set_major_formatter(mdate.DateFormatter("%Y-%m-%d")) # 设置时间标签显示格式 plt.xticks(pd.to_datetime(plot_df.index), rotation=90) plt.plot(plot_df, label="roll_yield") ax.legend() plt.show()
Example #27
Source File: utils.py From geoist with MIT License | 5 votes |
def tickfix(t, fg, ax, tfmt: str='%H:%M:%S'): majtick, mintick = timeticks(t[-1] - t[0]) if majtick: ax.xaxis.set_major_locator(majtick) if mintick: ax.xaxis.set_minor_locator(mintick) ax.xaxis.set_major_formatter(DateFormatter(tfmt)) fg.autofmt_xdate() ax.autoscale(True, 'x', tight=True) # ax.tick_params(axis='both',which='both') # ax.grid(True,which='both')
Example #28
Source File: PriceTradeAnalyzer.py From Stock-Price-Trade-Analyzer with GNU General Public License v3.0 | 5 votes |
def PlotScalerDateAdjust(minDate:datetime, maxDate:datetime, ax): if type(minDate)==str: daysInGraph = DateDiffDays(minDate,maxDate) else: daysInGraph = (maxDate-minDate).days if daysInGraph >= 365*3: majorlocator = mdates.YearLocator() minorLocator = mdates.MonthLocator() majorFormatter = mdates.DateFormatter('%m/%d/%Y') elif daysInGraph >= 365: majorlocator = mdates.MonthLocator() minorLocator = mdates.WeekdayLocator() majorFormatter = mdates.DateFormatter('%m/%d/%Y') elif daysInGraph < 90: majorlocator = mdates.DayLocator() minorLocator = mdates.DayLocator() majorFormatter = mdates.DateFormatter('%m/%d/%Y') else: majorlocator = mdates.WeekdayLocator() minorLocator = mdates.DayLocator() majorFormatter = mdates.DateFormatter('%m/%d/%Y') ax.xaxis.set_major_locator(majorlocator) ax.xaxis.set_major_formatter(majorFormatter) ax.xaxis.set_minor_locator(minorLocator) #ax.xaxis.set_minor_formatter(daysFmt) ax.set_xlim(minDate, maxDate)
Example #29
Source File: stock_analysis.py From intro_ds with Apache License 2.0 | 5 votes |
def drawData(ax, _data): """ 使用柱状图表示股市数据 """ candlestick_ochl(ax, _data[["date2num", "open_price", "close_price", "high_price", "low_price"]].values, colorup="r", colordown="g", width=0.5) ax.xaxis.set_major_locator(YearLocator()) ax.xaxis.set_major_formatter(DateFormatter('%Y')) return ax
Example #30
Source File: mplot.py From tia with BSD 3-Clause "New" or "Revised" License | 5 votes |
def date(self, fmt='%Y-%m-%d'): fmtfct = DateFormatter(fmt) self.axis.set_major_formatter(fmtfct) return self