Dear all,
Two variables in my dataset , call it xvar and yvar
I use command
it listed observations in log window
To naked eyes, they are the same value. I need to delete observations that meet condition of
My question is:
Rochelle
Two variables in my dataset , call it xvar and yvar
Code:
xvar float %9.0g yvar double %12.0g
Code:
list xvar yvar if xvar< yvar & yvar !=.
Code:
xvar yvar 5.1 5.1
Code:
if xvar< yvar & yvar !=.
- should I change the variable to the same types?
- Should I use double or float
Rochelle
Comment