I have the following statement within my SAS code taken from another person and I cannot figure out what it does. It is inside the DATA step when apparently creating a new variable named variable_X
:
variable_X = input(put(variable, variable_X.), best32.);
Can somebody explain me the logic behind this combination of input
and put
please?