“Panda menghitung nilai spesifik di kolom” Kode Jawaban

Panda menghitung nilai spesifik di kolom

(df[education]=='9th').sum()
coder

PD Hitung Berapa banyak item yang terjadi di kolom lain

df['Counts'] = df.groupby(['Color'])['Value'].transform('count')
Hambo

cara menghitung nilai khusus dalam data dalam python

df['sex'].value_counts()
Wide-eyed Whale

cara menghitung nilai khusus dalam data dalam python

df['sex'].value_counts(normalize=True)
Wide-eyed Whale

PANDAS Hitung Kejadian Nilai Tertentu Berjalan

print df
  col1 education
0    a       9th
1    b       9th
2    c       8th

print df.education == '9th'
0     True
1     True
2    False
Name: education, dtype: bool

print df[df.education == '9th']
  col1 education
0    a       9th
1    b       9th

print df[df.education == '9th'].shape[0]
2
print len(df[df['education'] == '9th'])
2
Dark Duck

hiw ti menghitung jumlah nilai tertentu dalam python

#using the .count() function where the occurence of an element you 
#want to find is the thing in the paranthesis
lista = [1,1,2,3,4,5]
print(lista.count(1))
# will return 2
Confused Chinchilla

Jawaban yang mirip dengan “Panda menghitung nilai spesifik di kolom”

Pertanyaan yang mirip dengan “Panda menghitung nilai spesifik di kolom”

Lebih banyak jawaban terkait untuk “Panda menghitung nilai spesifik di kolom” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya