Answers for "calculate number of rows having specific values for multiple columns in pandas"

0

pandas value_counts multiple columns

In [212]:
df = pd.DataFrame(np.random.randint(0, 2, (10, 4)), columns=list('abcd'))
df.apply(pd.Series.value_counts)
Out[212]:
   a  b  c  d
0  4  6  4  3
1  6  4  6  7
Posted by: Guest on September-28-2020

Code answers related to "calculate number of rows having specific values for multiple columns in pandas"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language