arrayを統計する



 
  • 使用pd.value_counts
  • predchurn=  array([0.2,0.1,0.1,…,0.,0.2,0.3])
    パンdas.value_を使用しますcountsは値の統計を行うことができます.戻りの形式はseriesです. 
    counts = pd.value_counts(pred_churn)
    0.0    1746
    0.1     732
    0.2     248
    0.3     116
    0.7      80
    0.6      78
    0.8      76
    0.9      71
    0.4      69
    0.5      59
    1.0      58
    dtype: int64
  • Counterを使用する 
  • from collection s import Counter c=Counter(predhuchrn)
     辞書を返します ,同時に辞書をpd.series(c)に導入し、直接seriesに変更することができます.
    Counter({0.2: 248,
             0.1: 732,
             0.3: 116,
             0.4: 69,
             0.0: 1746,
             0.5: 59,
             1.0: 58,
             0.6: 78,
             0.9: 71,
             0.7: 80,
             0.8: 76})