第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

創(chuàng)建數(shù)據(jù)透視表的圖表

創(chuàng)建數(shù)據(jù)透視表的圖表

POPMUISE 2023-10-26 15:18:43
我創(chuàng)建一個(gè)數(shù)據(jù)透視表,我想創(chuàng)建一個(gè)條形圖。這是我的數(shù)據(jù)透視表:我不知道如何提取 1970 列的值并使用此信息制作條形圖。
查看完整描述

2 回答

?
慕沐林林

TA貢獻(xiàn)2016條經(jīng)驗(yàn) 獲得超9個(gè)贊

只需將數(shù)據(jù)框列名轉(zhuǎn)換為str即可選擇年份的1970數(shù)據(jù)df['1970']。然后,您可以使用pandas內(nèi)置plot.bar方法來制作條形圖。嘗試這個(gè):


import pandas as pd

import matplotlib.pyplot as plt


#converting column names to string

df.columns = df.columns.astype(str)


#plotting a bar plot

df['1970'].plot.bar()

plt.show()

基于@AlanDyke DataFrame 的示例:


import pandas as pd

import matplotlib.pyplot as plt


df = pd.DataFrame([[1970,'a',1],

                   [1970,'b',2],

                   [1971,'a',2],

                   [1971,'b',3]],

                   columns=['year','location', 'value'])

df = pd.pivot_table(df, values='value', index='location', columns='year')

df.columns = df.columns.astype(str)

df['1970'].plot.bar()


plt.show()

https://img1.sycdn.imooc.com/653a130f00011df405990447.jpg

查看完整回答
反對(duì) 回復(fù) 2023-10-26
?
墨色風(fēng)雨

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以使用 plt.bar 并對(duì)數(shù)據(jù)幀進(jìn)行切片:


df = pd.DataFrame([[1970,'a',1],

                   [1970,'b',2], 

                   [1971,'a',2],

                   [1971,'b',3]],

                   columns=['year','location', 'value'])

df = pd.pivot_table(df, values='value', index='location', columns='year')

plt.bar(list(df.transpose().columns), height=df[1970])


查看完整回答
反對(duì) 回復(fù) 2023-10-26
  • 2 回答
  • 0 關(guān)注
  • 138 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)