4.2 The arguments
- Then the brackets enclose the
arguments
of the function(x, y = NULL etc)
. - The argument
x
has no default value, however the argumenty
has the default setting ofNULL
which means that if the analyst does not supply any value fory
when the function is called, theny = NULL
. - Likewise
uiw
has no default whereasliw
does. Ifliw
is not supplied then it will take the value ofuiw
.