Regarding #14, I think we need to be on the same understanding about that condition "& CAE_02".
CAE_02 is a continuous variable consisting of ratio. If the condition is "if CAE_02", then all of the values will be "1" as (TRUE) except if CAE_02 is equal to 0 as (FALSE). Here is an example:
Results:
So, what is typed in #14 does not make sense to me.
CAE_02 is a continuous variable consisting of ratio. If the condition is "if CAE_02", then all of the values will be "1" as (TRUE) except if CAE_02 is equal to 0 as (FALSE). Here is an example:
Code:
clear input y 0 1 . 3 4 end list if y
Code:
+---+
| y |
|---|
2. | 1 |
3. | . |
4. | 3 |
5. | 4 |
+---+

Comment