Description Usage Arguments Value Examples
area under the curve
AUC
Returns area under the curve
1 |
time |
A |
volume |
First |
Returns angle
and slope
object.
1 2 3 4 5 6 7 8 9 10 11 | time <- c(0, 3, 7, 11, 18, 22, 26, 30, 32, 35)
volume1<- time * tan(30*pi/180)
volume2<- time * tan(45*pi/180)
auc1 <- AUC(time, volume1)
auc2 <- AUC(time, volume2)
par(pty="s")
xylimit <- range(c(time, volume1, volume2))
plot(time, volume1, type = "b", xlim = xylimit, ylim = xylimit)
lines(time, volume2, type = "b")
abline(lm(volume1~time))
abline(lm(volume2~time))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.