2019年1月24日 星期四

matplotlib label 上/下標,設置方法

下標 (subscripts) 用底線 '_' ,上標(superscripts) 用 '^' 符號,前後用 '$' 包起來

例如這樣

#下標效果
plt.xlabel('RR$_{n}$ (ms)', fontsize=20)

#上標效果
plt.ylabel('RR$^{n+1}$ (ms)', fontsize=20)

結果


ref:
http://blog.sina.com.cn/s/blog_4a7b9abb0102x27h.html
其他特殊符號
https://matplotlib.org/users/mathtext.html

2019年1月20日 星期日

matplotlib 2.2.0 以上版本,finance 分離出來了

最近想要使用 matplotlib 的 finance 包,突然發現找不到了,原來是從 matplotlib 2.2.0以上版本,就被分離出來了,需要另外獨自安裝

cmd line 下

pip install mpl_finance

就可以安裝囉


ref: 畫 candlestick chart
https://openwritings.net/pg/python/python-draw-candlestick-chart-using-mplfinance-fetching-data-csv-file