كيفية إنشاء boxplot من pandas dataframe
يمكنك استخدام بناء الجملة التالي لإنشاء boxplots من 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 ')
توضح الأمثلة التالية كيفية استخدام بناء الجملة هذا عمليًا مع DataFrame التالي:
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
مثال 1: Boxplot لعمود
يوضح التعليمة البرمجية التالية كيفية إنشاء boxplot لعمود في pandas DataFrame:
df. boxplot (column=[' points '], grid= False , color=' black ')
مثال 2: Boxplot من عدة أعمدة
يوضح التعليمة البرمجية التالية كيفية إنشاء boxplot لأعمدة متعددة في pandas DataFrame:
df. boxplot (column=[' points ', ' assists '], grid= False , color=' black ')
مثال 3: Boxplot مجمعة في عمود واحد
يوضح التعليمة البرمجية التالية كيفية إنشاء boxplot مجمعة بواسطة عمود في pandas DataFrame:
df. boxplot (column=[' points '], by=' conference ', grid= False , color=' black ')
مصادر إضافية
الباندا: كيفية رسم عدة سلاسل
الباندا: كيفية رسم أعمدة متعددة على مخطط شريطي