python 상자 형 그림 그리 기

본 논문 의 사례 는 python 이 상자 형 그림 을 그 리 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt


# Seaborn    matplotlib           API  ,          ,         seaborn            。
import seaborn  as sns
from scipy import stats

import warnings
warnings.filterwarnings("ignore")
%matplotlib inline


#    
# orient="v"       ,   'h'    
# showfliers=False,#       
# fliersize=15       marker  ,   5
# flierprops = {'marker':'o',#     
#                          'markerfacecolor':'red',#     
#                          'color':'black',#      
#                         },

# showcaps=False,#      
# capprops={'linestyle':'--','color':'red'},#        
# whiskerprops={'linestyle':'--','color':'red'},#       
# notch=True,#      
# color='white',#     

# boxprops = {'color':'red',#    
#           'facecolor':'pink'#     
#           },#      

# showmeans=True,#      ,
# meanprops = {'marker':'D','markerfacecolor':'red'},#      
# meanline=True,#     
# meanprops = {'linestyle':'--','color':'red'},#       

fig = plt.figure(figsize=(6,4))  #             

sns.boxplot(train_data['V0'], 
            orient='v',
            showfliers=True,
            fliersize=4, 
            width=0.5,
            flierprops={
                'marker':'o',
                'markerfacecolor':'red',
                'color':'write'
            },
           showcaps=True,
           capprops={
               'linestyle':'--',
               'color':'red'
           },
            whiskerprops={
                'linestyle':'--',
                'color':'red'
            },
            notch=True,#      
            color='white',#     
            boxprops = {'color':'red',#    
           'facecolor':'pink'#     
           },#      
            showmeans=True,#      ,
            # meanprops = {'marker':'D','markerfacecolor':'red'},#      
            meanline=True,#     
            meanprops = {'linestyle':'--','color':'red'},#       
           )

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기