Tentei transformar o k em int porém aparece o seguinte erro: import numpy as np n = dados.shape[0] k = 1 + (10/3)*np.log10(n) k 17.285291187298853 k = int(k.round(0))
k
AttributeError Traceback (most recent call last) in () ----> 1 k = int(k.round(0)) 2 k
AttributeError: 'int' object has no attribute 'round'