Як відобразити відсоток на осі y гістограми pandas
Ви можете використовувати такий базовий синтаксис, щоб відобразити відсотки на осі Y гістограми панди:
import pandas as pd import numpy as np import matplotlib. pyplot as plt from matplotlib. ticker import PercentFormatter #create histogram, using percentages instead of counts plt. hist (df[' my_column '], weights= np.ones ( len (df)) / len (df)) #apply percentage format to y-axis plt. gca (). yaxis . set_major_formatter (PercentFormatter(1)) plt. show ()
У наступному прикладі показано, як використовувати цей синтаксис на практиці.
Приклад: Показати відсоток на осі Y гістограми Pandas
Припустімо, що у нас є такий фрейм даних pandas, який містить інформацію про різних баскетболістів:
import pandas as pd import numpy as np #make this example reproducible n.p. random . seeds (1) #createDataFrame df = pd. DataFrame ({' points ': np. random . normal (loc=20, scale=2, size=300), ' assists ': np. random . normal (loc=14, scale=3, size=300), ' rebounds ': np. random . normal (loc=12, scale=1, size=300)}) #view head of DataFrame print ( df.head ()) points assists rebounds 0 23.248691 20.197350 10.927036 1 18.776487 9.586529 12.495159 2 18.943656 11.509484 11.047938 3 17.854063 11.358267 11.481854 4 21.730815 13.162707 10.538596
Якщо ми створюємо гістограму для візуалізації розподілу значень у стовпчику точок , на осі ординат за замовчуванням відображатимуться підрахунки:
import matplotlib. pyplot as plt
#create histogram for points columb
plt. hist (df[' points '], edgecolor=' black ')
Щоб замість цього відобразити відсотки на осі ординат, ми можемо використати функцію PercentFormatter :
import numpy as np import matplotlib. pyplot as plt from matplotlib. ticker import PercentFormatter #create histogram, using percentages instead of counts plt. hist (df[' points '], weights=np. ones ( len (df)) / len (df), edgecolor=' black ') #apply percentage format to y-axis plt. gca (). yaxis . set_major_formatter (PercentFormatter(1)) plt. show ()
Зауважте, що вісь Y тепер відображає відсотки.
Якщо ви хочете видалити десяткові знаки з відсотків, просто використовуйте аргумент decimals=0 у функції PercentFormatter() :
import numpy as np import matplotlib. pyplot as plt from matplotlib. ticker import PercentFormatter #create histogram, using percentages instead of counts plt. hist (df[' points '], weights=np. ones ( len (df)) / len (df), edgecolor=' black ') #apply percentage format to y-axis plt. gca (). yaxis . set_major_formatter (PercentFormatter(1, decimals= 0 )) plt. show ()
На осі Y тепер відображаються відсотки без десяткових знаків.
Додаткові ресурси
У наступних посібниках пояснюється, як виконувати інші типові завдання в pandas:
Як змінити кількість бінів, що використовуються в гістограмі Pandas
Як змінити діапазон осі X на гістограмі Pandas
Як побудувати гістограми за групами в Pandas