本文概述
python統計資訊模組提供了對數字資料進行數學統計的功能。在此模組中定義了一些流行的統計功能。
mean()函式
mean()函式用於計算列表中數字的算術平均值。
例子import statistics
# list of positive integer numbers
datasets = [5, 2, 7, 4, 2, 6, 8]
x = statistics.mean(datasets)
# printing the mean
print("mean is :", x)
輸出mean is : 4.857142857142857
median()函式
median()函式用於返回列表中數字資料的中間值。
例子import statistics
datasets = [4, -5, 6, 6, 9, 4, 5, -2]
# printing median of the
# random data-set
print("median of data-set is : % s "
% (statistics.median(datasets)))
輸出median of data-set is : 4.5
mode()函式
mode()函式返回列表中最常見的資料。
例子import statistics
# declaring a ****** data-set consisting of real valued positive integers.
dataset =[2, 4, 7, 7, 2, 2, 3, 6, 6, 8]
# printing out the mode of given data-set
print("calculated mode % s" % (statistics.mode(dataset)))
輸出calculated mode 2
stdev()函式
stdev()函式用於計算給定樣本的標準偏差, 該樣本以列表的形式提供。
例子import statistics
# creating a ****** data - set
sample = [7, 8, 9, 10, 11]
# prints standard deviation
print("standard deviation of sample is % s "
% (statistics.stdev(sample)))
輸出standard deviation of sample is 1.5811388300841898
mid_low()
mid_low函式用於返回列表中數字資料的低中位數。
例子import statistics
# ****** list of a set of integers
set1 = [4, 6, 2, 5, 7, 7]
# note: low median will always be a member of the data-set.
# print low median of the data-set
print("low median of data-set is % s "
% (statistics.median_low(set1)))
輸出low median of the data-set is 5
mid_high()
mid_high函式用於返回列表中數字資料的高中位數。
例子import statistics
# list of set of the integers
dataset = [2, 1, 7, 6, 1, 9]
print("high median of data-set is %s "
% (statistics.median_high(dataset)))
輸出high median of the data-set is 6
python通達信模組 通達信轉python
好轉,學會以下操作就很容了。得到當前工作目錄,即當前python指令碼工作的目錄路徑 os.getcwd 返回指定目錄下的所有檔案和目錄名 os.listdir 函式用來刪除乙個檔案 os.remove 刪除多個目錄 osremovedirs r c python 略危險,熟練之後再用吧 檢驗給出的...
如何把idaapi模組在外部給python使用
使用ida都知道idapython外掛程式,提供idc.py idaapi.py idautils.py,可以直接import進來,可以在ida執行時使用內部python外掛程式執行 然而這幾個函式在不使用ida上下文的時候是無法使用的,會提示找不到 idaapi模組,那麼 idaapi又是 來的呢...
Redis Zset實現統計模組
檢視總體配置的數量以及活躍的數量 檢視每一條配置的使用量 直接在mysql中count即可得到 實現方式有很多,經過選擇之後,選取了用redis的zset來實現 使用hashmap,當獲取到配置的使用,那配置的key獲取value加1即可 可能存在的問題,併發問題,集群中每個節點的資料怎麼聚合 在m...