matplotlib description 없애기

𝐌𝐢𝐧𝐣𝐢·2021년 8월 23일
0

Data Visualization

목록 보기
1/1

그래프 위에
<matplotlib.axes._subplots.AxesSubplot at 0x7f64677937c0>
이런걸 없애려면...

그래프 출력 마지막 line에 ;를 찍는다.

예시

change

sns.histplot(train_df, x = 'name')

into

sns.histplot(train_df, x = 'name');

0개의 댓글