If I have a vector of number and I set all the non zero value to one, can this be defined a "Normalization" process?

70 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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.