scipy.stats.relfreq(a, numbins, defaultreallimits, weights)
是使用直方圖函數的相對頻率直方圖。
參數:
arr:[數組]輸入數組。
numbins:直方圖使用的箱數。 [默認= 10]
defaultreallimits:直方圖的(較低,較高)範圍。
重量:每個數組元素的[數組]權重。
Results:
-相對頻率合並值
-每個箱子的寬度
-下限
-加分。
代碼1:
# relative frequency
from scipy import stats
import numpy as np
arr1 = [1, 3, 27, 2, 5, 13]
print ("Array element:", arr1, "\n")
a, b, c, d = stats.relfreq(arr1, numbins = 4)
print ("cumulative frequency:", a)
print ("Lower Limit:", b)
print ("bin size:", c)
print ("extra-points:", d)
輸出:
Array element: [1, 3, 27, 2, 5, 13] cumulative frequency: [0.66666667 0.16666667 0. 0.16666667] Lower Limit: -3.333333333333333 bin size: 8.666666666666666 extra-points: 0
代碼2:
# relative frequency
from scipy import stats
import numpy as np
arr1 = [1, 3, 27, 2, 5, 13]
print ("Array element:", arr1, "\n")
a, b, c, d = stats.relfreq(arr1, numbins = 4,
weights = [.1, .2, .1, .3, 1, 6])
print ("cumfreqs:", a)
print ("lowlim:", b)
print ("binsize:", c)
print ("extrapoints:", d)
輸出:
Array element: [1, 3, 27, 2, 5, 13] cumfreqs: [0.26666667 1. 0. 0.01666667] lowlim: -3.333333333333333 binsize: 8.666666666666666 extrapoints: 0
相關用法
- Python Scipy stats.sem()用法及代碼示例
- Python Scipy stats.mean()用法及代碼示例
- Python Scipy stats.trim1()用法及代碼示例
- Python Scipy stats.trimboth()用法及代碼示例
- Python Scipy stats.skewtest()用法及代碼示例
- Python Scipy stats.kurtosistest()用法及代碼示例
- Python Scipy stats.nanstd()用法及代碼示例
- Python Scipy stats.kurtosis()用法及代碼示例
- Python Scipy stats.nanmean()用法及代碼示例
- Python Scipy stats.gmean()用法及代碼示例
- Python Scipy stats.normaltest()用法及代碼示例
- Python Scipy stats.mode()用法及代碼示例
注:本文由純淨天空篩選整理自vishal3096大神的英文原創作品 sciPy stats.relfreq() function | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。