def _get_marker_compat(marker):
import matplotlib.lines as mlines
import matplotlib as mpl
if mpl.__version__ < '1.1.0' and marker == '.':
return 'o'
if marker not in mlines.lineMarkers:
return 'o'
return marker
plotting.py 文件源码
python
阅读 24
收藏 0
点赞 0
评论 0
评论列表
文章目录