Cara membuat plot kotak dari pandas dataframe
Anda dapat menggunakan sintaks berikut untuk membuat plot kotak dari pandas DataFrame:
#create boxplot of one column df. boxplot (column=[' col1 ']) #create boxplot of multiple columns df. boxplot (column=[' col1 ', ' col2 ']) #create boxplot grouped by one column df. boxplot (column=[' col1 '], by=' col2 ')
Contoh berikut menunjukkan cara menggunakan sintaksis ini dalam praktiknya dengan DataFrame berikut:
import pandas as pd #createDataFrame df = pd. DataFrame ({' conference ': ['A', 'A', 'A', 'B', 'B', 'B'], ' points ': [5, 7, 7, 9, 12, 9], ' assists ': [11, 8, 10, 6, 6, 5], ' rebounds ': [4, 2, 5, 8, 6, 11],}) #view DataFrame df
Contoh 1: Boxplot suatu kolom
Kode berikut menunjukkan cara membuat plot kotak untuk kolom di pandas DataFrame:
df. boxplot (column=[' points '], grid= False , color=' black ')
Contoh 2: Boxplot beberapa kolom
Kode berikut menunjukkan cara membuat plot kotak untuk beberapa kolom di pandas DataFrame:
df. boxplot (column=[' points ', ' assists '], grid= False , color=' black ')
Contoh 3: Boxplot dikelompokkan berdasarkan satu kolom
Kode berikut menunjukkan cara membuat plot kotak yang dikelompokkan berdasarkan kolom di pandas DataFrame:
df. boxplot (column=[' points '], by=' conference ', grid= False , color=' black ')
Sumber daya tambahan
Pandas: cara membuat plot beberapa seri
Pandas: Cara memplot beberapa kolom pada diagram batang