Matplotlib,seaborn

ph
Admin (토론 | 기여)님의 2020년 2월 28일 (금) 18:37 판 (새 문서: == xticks on top == ref. https://matplotlib.org/3.1.3/gallery/ticks_and_spines/tick_xlabel_top.html <source> import matplotlib.pyplot as plt import numpy as np plt.rcParams['xtick.b...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색

xticks on top

ref. https://matplotlib.org/3.1.3/gallery/ticks_and_spines/tick_xlabel_top.html

import matplotlib.pyplot as plt
import numpy as np

plt.rcParams['xtick.bottom'] = plt.rcParams['xtick.labelbottom'] = False
plt.rcParams['xtick.top'] = plt.rcParams['xtick.labeltop'] = True