Hi all I have a vector of Numbers like this:
L = [[0,1,2,0],[0,0,1,5]]
and I have transformed it like this, so all the non zero and higher than 1 numbers has been set to 1
L = [[0,1,1,0],[0,0,1,1]]
Can this operation be defined as a Normalization? if Not how can I define it?
Converting my comment into an answer since it seems to have been useful for OP:
You could count this as a normalization by way of a threshold, but it is going to profoundly impact all of your analysis. It can be very lossy.