-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcustomFunction.Rd
60 lines (55 loc) · 2.51 KB
/
customFunction.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/customFunction.R
\name{customFunction}
\alias{customFunction}
\title{Replace a mizer function with a custom version}
\usage{
customFunction(name, fun)
}
\arguments{
\item{name}{Name of mizer function to replace}
\item{fun}{The custom function to use as replacement}
}
\value{
No return value, called for side effects
}
\description{
\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}}
This function allows you to make arbitrary changes to how mizer works by
allowing you to replace any mizer function with your own version. You
should do this only as a last resort, when you find that you can not use
the standard mizer extension mechanism to achieve your goal.
}
\details{
If the function you need to overwrite is one of the mizer rate functions,
then you should use \code{setRateFunction()} instead of this function. Similarly
you should use \verb{resource_dynamics()<-} to change the resource dynamics and
\code{setReproduction()} to change the density-dependence in reproduction.
You should also investigate whether you can achieve your goal by introducing
additional ecosystem components with \code{setComponent()}.
If you find that your goal really does require you to overwrite a mizer
function, please also create an issue on the mizer issue tracker at
\url{https://github.com/sizespectrum/mizer/issues} to
describe your goal, because it will be interesting to the mizer community
and may motivate future improvements to the mizer functionality.
Note that \code{customFunction()} only overwrites the function used by the mizer
code. It does not overwrite the function that is exported by mizer. This
will become clear when you run the code in the Examples section.
This function does not in any way check that your replacement function is
compatible with mizer. Calling this function can totally break mizer.
However you can always undo the effect by reloading mizer with
\if{html}{\out{<div class="sourceCode">}}\preformatted{detach(package:mizer, unload = TRUE)
library(mizer)
}\if{html}{\out{</div>}}
}
\examples{
\dontrun{
fake_project <- function(...) "Fake"
customFunction("project", fake_project)
mizer::project(NS_params) # This will print "Fake"
project(NS_params) # This will still use the old project() function
# To undo the effect:
customFunction("project", project)
mizer::project(NS_params) # This will again use the old project()
}
}