True or false? In dataset two values of dif_1 variable will be exactly the same as values of dif_2 variable.
two
dif_1
dif_2
data two; set one; dif_1 = x - lag(x); dif_2 = dif(x); run;
Example of one dataset:
one