Dear All,
I am fairly new to R. I work mainly in SAS. Now, I know that SAS is approved
by the FDA for submissions. My question is, does the FDA approve {R} for
clinical trial submissions. Also has anyone ever tried to produce TFL's using
R. I would like to know how difficult it to produce
It is a common misperception that FDA "approves" software other than the
software used to drive medical devices such as pacemakers. You can use any
software to make FDA submissions. FDA gets submissions in Minitab and
Excel, for example. That being said, base R is CFR11 compliant (see
www.r-proj
Dear List,
when I first started to use S4 classes, I used the function
'completeClassDef()' in order to see the super- and subclasses of a
certain class:
setClass(Class="A", representation=list(a="numeric"))
setClass(Class="B", contains="A", representation=list(b="character"))
# Super
x <- comp