【Python教程】繪制小提琴圖
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 14:16:49
【Python教程】繪制小提琴圖
【Python教程】繪制小提琴圖:小提琴圖(Violinplot)可以理解為箱圖(Boxplot)加上密度圖(Kdensity),本文簡單介紹在Python中如何繪制該圖,使用數(shù)據(jù)為Stata軟件系統(tǒng)自帶auto數(shù)據(jù)(已導(dǎo)出為CSV格式)。導(dǎo)入命令1)設(shè)置工作環(huán)境 %cd "F:\\Dropbox\\python&
導(dǎo)讀【Python教程】繪制小提琴圖:小提琴圖(Violinplot)可以理解為箱圖(Boxplot)加上密度圖(Kdensity),本文簡單介紹在Python中如何繪制該圖,使用數(shù)據(jù)為Stata軟件系統(tǒng)自帶auto數(shù)據(jù)(已導(dǎo)出為CSV格式)。導(dǎo)入命令1)設(shè)置工作環(huán)境 %cd "F:\\Dropbox\\python&
小提琴圖(Violinplot)可以理解為箱圖(Boxplot)加上密度圖(Kdensity),本文簡單介紹在Python中如何繪制該圖,使用數(shù)據(jù)為Stata軟件系統(tǒng)自帶auto數(shù)據(jù)(已導(dǎo)出為CSV格式)。
導(dǎo)入命令
1)設(shè)置工作環(huán)境
%cd "F:\Dropbox\python"2)導(dǎo)入程序包import pandas as pd
import seaborn as sns
3)讀取數(shù)據(jù)tips=pd.read_csv("stata_auto.csv")
4)定義并繪制圖像
sns.set(style="whitegrid",palette="pastel",color_codes=ture)
sns.violinplot(x="rep78", y="mpg", data=tips, split=True,inner="quart")
sns.despine(left=True)
輸出圖像如下
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
【Python教程】繪制小提琴圖
【Python教程】繪制小提琴圖:小提琴圖(Violinplot)可以理解為箱圖(Boxplot)加上密度圖(Kdensity),本文簡單介紹在Python中如何繪制該圖,使用數(shù)據(jù)為Stata軟件系統(tǒng)自帶auto數(shù)據(jù)(已導(dǎo)出為CSV格式)。導(dǎo)入命令1)設(shè)置工作環(huán)境 %cd "F:\\Dropbox\\python&