0

我正在编写决策树和混淆矩阵,并添加了循环计数器来确定代码的运行时间,但它返回 0。

L = 0
def creatematrixnull(target):
    global L
    uniquetarget =unique(target)
    # we specifie the type to ease the plot
    dataframe=pd.DataFrame(columns=uniquetarget,index=uniquetarget, dtype='int32')
    for i in range(len(uniquetarget)):
        dataframe.iloc[i]=[0]*len(uniquetarget)
        L=L+1
    return dataframe 
    creatematrix=creatematrixnull(targettest)
print(L)

这是我正在谈论的一个例子

4

0 回答 0