Displaying 2 results from an estimated 2 matches for "c346".
Did you mean:
346
2007 May 22
1
translate SAS code
good morning,
I have some SAS code to translate in R code and when I export data from Excel to R I have to read formula writed as follow
C604=(C181/S181)*(100-C182)*(100/85)
or
if C325=. then C740=(C346/C103)*100| else C740=(C346/C325)*100
I find some difficulties to write a good program to read and calculate these formulas
there are several kinds of formulas there are with conditional and without conditional
can you help me please?
thanks.
________________________________________________...
2007 May 16
2
use mathematics formula
...137=. Then C627=.| else do| if C109=. Then C627=(C138/S138)*(100-C137)| else C627=(C138/S138)*C109| end
3 638 C638 = C103 / S103
4 740 if C325=. then C740=(C346/C103)*100| else C740=(C346/C325)*100
5 739 if C155=. then C739=(C570/C103)*100| else C739=C155/(C155+C103)*100
6 628 if C325=. then C628=(C455/C103)*100| else C628=(C455/C325)*100
7 747...