Examples for 'base::abs'


Miscellaneous Mathematical Functions

Aliases: abs sqrt

Keywords: math

### ** Examples

require(stats) # for spline
require(graphics)
xx <- -9:9
plot(xx, sqrt(abs(xx)),  col = "red")
lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")
plot of chunk example-base-abs-1

[Package base version 4.2.3 Index]