import sys
import ConfigParser
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import datetime as DT
import bokeh
sys.path.extend(['..\..\myProj\SOURCE'])
fullfilepath = "../../myProj/SOURCE/" + 'myparts.txt'
ohg_df = pd.read_csv(fullfilepath, sep="\t")
temp_df = temp_df[['as_on_date', 'ohg_qty']]
temp_df = temp_df.sort(['as_on_date'], ascending=[1])
temp_df.set_index('as_on_date')
plt.plot(temp_df.index, temp_df.ohg_qty)
plt.show()
這是導入後的數據幀。matplotlib dataframe x軸日期問題
我想繪製與數據框中提到的日期x axis
線圖。
有人可以指導我...我是熊貓新手。
你有什麼問題嗎?你使用'木星筆記本'還是一樣? –
要麼寫 'temp_df = temp_df.set_index('as_on_date')'或'temp_df.set_index('as_on_date',inplace = True)' –
yes ..m使用jupyter ..但在劇情沒有得到dateson x-軸......我得到索引號 – Santor