您好,登錄后才能下訂單哦!
這篇文章主要介紹Python如何使用Chord包實(shí)現(xiàn)炫彩弦圖,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
弦圖主要用于展示多個(gè)對(duì)象之間的關(guān)系,連接圓上任意兩點(diǎn)的線段叫做弦,弦(兩點(diǎn)之間的連線)就代表著兩者之間的關(guān)聯(lián)關(guān)系。
弦圖雖然看起來(lái)有點(diǎn)眼花繚亂,但是它卻非常適合用戶分析復(fù)雜數(shù)據(jù)的關(guān)聯(lián)關(guān)系。
Python中能夠繪制弦圖的包有一些,本篇主要介紹如何使用chord庫(kù)來(lái)制作酷炫的弦圖??梢圆榭垂俜轿臋n。
在使用前需要用pip安裝:
pip install chord
在官方文檔中很清晰地羅列了API的使用說(shuō)明,API分為free和pro兩個(gè)版本,其中pro版本在free的基礎(chǔ)上增加了不少新的參數(shù)可以使用,但是pro需要用戶支付一定的費(fèi)用,大概是10英鎊。
Free API:
Chord(self, matrix, names, colors="d3.schemeSet1", opacity=0.8, padding=0.01, width=700, label_color="#454545", wrap_labels=False, margin=0, credit=False, font_size="16px", font_size_large="20px" )
Pro API:
Chord(self, matrix, names, colors="d3.schemeSet1", opacity=0.8, padding=0.01, width=700, label_color="#454545", wrap_labels=False, margin=0, credit=False, font_size="16px", font_size_large="20px", details=[], details_thumbs=[], thumbs_width=85, thumbs_margin=5, thumbs_font_size=14, popup_width=350, noun="instances", details_separator=", ", divide=False, divide_idx=0, divide_size=0.5, instances=0, verb="occur together in", symmetric=True, title="", arc_numbers=False, divide_left_label="", divide_right_label="", inner_radius_scale=0.39, outer_radius_scale=1.1, allow_download=False, )
chord支持輸出html文件或者在Jupyter Lab中展示:
Chord(matrix, names).to_html()
Chord(matrix, names).show()
最后展示下使用chord畫(huà)圖的小例子,chord還支持交互操作,非??犰藕每?/p>
以上是“Python如何使用Chord包實(shí)現(xiàn)炫彩弦圖”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。