“SNS Countplot menunjukkan jumlah” Kode Jawaban

menampilkan nilai di countplot

plt.figure(figsize=(12,8))
ax = sns.countplot(x="AXLES", data=dfWIM, order=[3,4,5,6,7,8,9,10,11,12])
plt.title('Distribution of Truck Configurations')
plt.xlabel('Number of Axles')
plt.ylabel('Frequency [%]')

for p in ax.patches:
        ax.annotate('%{:.1f}'.format(p.get_height()), (p.get_x()+0.1, p.get_height()+50))
Brave Buffalo

SNS Countplot menunjukkan jumlah

# Declare graph/plot variable
sample_plot = sns.countplot(df['Sample'])

#This display the values on top of the bars
for p in sample_plot.patches:
        sample_plot.annotate('{}'.format(p.get_height()), (p.get_x()+.35, p.get_height()+20))
NotACoder

Jawaban yang mirip dengan “SNS Countplot menunjukkan jumlah”

Pertanyaan yang mirip dengan “SNS Countplot menunjukkan jumlah”

Lebih banyak jawaban terkait untuk “SNS Countplot menunjukkan jumlah” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya