matplotlib函式理解

2022-09-06 12:21:20 字數 980 閱讀 5537

cumsum(),通常用於計算乙個陣列各行的累加值,函式用法是b = cumsum(a,dim),或b = cumsum(a)。

def cumsum(self, axis=0, *args, **kwargs):

"""cumulative sum of non-na/null values.

when performing the cumulative summation, any non-na/null values will

be skipped. the resulting sparseseries will preserve the locations of

nan values, but the fill value will be `np.nan` regardless.

parameters

----------

axis :

returns

-------

cumsum : sparseseries

"""

舉例說明:

data資料,對盈利求和是37535

# a1的cumsum()是前1行的資料之和;a2的cumsum()是前2行的資料之和(9173+5729=14902);……

data.cumsum()------a1 9173a2 14902a3 19713a4 23307a5 26502a6 29528a7 31906a8 33876a9 35753a10 37535

#

python程式段裡的這條語句的意思是?

p = 1.0*data.cumsum()/data.sum()

# 1.0讓資料浮點格式化

#

SetBkMode函式理解

輸出的字串時,發現存在背景色,這樣的輸出是破壞背景的。那需要使用什麼方法來保持背景不變,而又能輸出紅色的字串呢?比如按鈕的文字顏色是黑色的,而背景是灰色的。這就需要使用setbkmode函式來設定drawtext函式的輸出方式,顯示裝置共有兩種輸出方式 opaque和transparent。opaq...

OpenGl glenable 函式理解

glenable 用於啟用各種功能。功能由引數決定。與gldisable相對應。gldisable是用來關閉的。兩個函式引數取值是一至的。引數說明 void glenable glenum cap glenum 是unsigned int 型別 cap 是乙個取值。由值決定啟用的功能鍵。各種功能請看...

get函式理解

include include include includeusing namespace std int main char next do cin.get next cout 輸入 to be or not to be 輸出 to be or not to be 其實剛開始我很不理解為什麼輸出...