Title: | Fitting Point Process Models via the Palm Likelihood |
---|---|
Description: | Functions to fit point process models using the Palm likelihood. First proposed by Tanaka, Ogata, and Stoyan (2008) <DOI:10.1002/bimj.200610339>, maximisation of the Palm likelihood can provide computationally efficient parameter estimation for point process models in situations where the full likelihood is intractable. This package is chiefly focused on Neyman-Scott point processes, but can also fit the void processes proposed by Jones-Todd et al. (2019) <DOI:10.1002/sim.8046>. The development of this package was motivated by the analysis of capture-recapture surveys on which individuals cannot be identified---the data from which can conceptually be seen as a clustered point process (Stevenson, Borchers, and Fewster, 2019 <DOI:10.1111/biom.12983>). As such, some of the functions in this package are specifically for the estimation of cetacean density from two-camera aerial surveys. |
Authors: | Ben Stevenson <[email protected]> |
Maintainer: | Ben Stevenson <[email protected]> |
License: | GPL |
Version: | 1.1.5 |
Built: | 2024-10-25 04:46:46 UTC |
Source: | https://github.com/b-steve/palm |
Carries out a parametric bootstrap procedure for models fitted
using the palm
package.
boot.palm(fit, N, prog = TRUE)
boot.palm(fit, N, prog = TRUE)
fit |
A fitted object. |
N |
The number of bootstrap resamples. |
prog |
Logical, if |
The original model object containing additional information
from the bootstrap procedure. These are accessed by functions
such as summary.palm and confint.palm. The
bootstrap parameter estimates can be found in the boots
component of the returned object.
## Fit model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Carry out bootstrap. fit <- boot.palm(fit, N = 100) ## Inspect standard errors and confidence intervals. summary(fit) confint(fit) ## Estimates are very imprecise---these data were only used as ## they can be fitted and bootstrapped quickly for example purposes.
## Fit model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Carry out bootstrap. fit <- boot.palm(fit, N = 100) ## Inspect standard errors and confidence intervals. summary(fit) confint(fit) ## Estimates are very imprecise---these data were only used as ## they can be fitted and bootstrapped quickly for example purposes.
Extracts estimated parameters from an object returned by the fitting functions in this package, such as fit.ns, fit.void, and fit.twocamera.
## S3 method for class 'palm' coef(object, se = FALSE, ...) ## S3 method for class 'palm_twocamerachild' coef(object, se = FALSE, report.2D = TRUE, ...)
## S3 method for class 'palm' coef(object, se = FALSE, ...) ## S3 method for class 'palm_twocamerachild' coef(object, se = FALSE, report.2D = TRUE, ...)
object |
A fitted model object. |
se |
Logical, if |
... |
Other parameters (for S3 generic compatibility). |
report.2D |
Logical, for two-camera model fits only. If
|
Extracts confidence intervals for estimated and derived parameters from a model fitted using fit.ns, fit.void, or fit.twocamera, then bootstrapped using boot.palm.
## S3 method for class 'palm' confint(object, parm = NULL, level = 0.95, method = "percentile", ...)
## S3 method for class 'palm' confint(object, parm = NULL, level = 0.95, method = "percentile", ...)
object |
|
parm |
A vector of parameter names, specifying which parameters are to be given confidence intervals. Defaults to all parameters. |
level |
The confidence level required. |
method |
A character string specifying the method used to calculate confidence intervals. Choices are "normal", for a normal approximation, and "percentile", for the percentile method. |
... |
Other parameters (for S3 generic compatibility). |
Bootstrap parameter estimates can be found in the boots
component of the model object, so alternative confidence interval
methods can be calculated by hand.
## Fitting model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Carrying out bootstrap. fit <- boot.palm(fit, N = 100) ## Calculating 95% confidence intervals. confint(fit) ## Estimates are very imprecise---these data were only used as ## they can be fitted and bootstrapped quickly for example purposes.
## Fitting model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Carrying out bootstrap. fit <- boot.palm(fit, N = 100) ## Calculating 95% confidence intervals. confint(fit) ## Estimates are very imprecise---these data were only used as ## they can be fitted and bootstrapped quickly for example purposes.
Simulated data from a Neyman-Scott point process, with children points generated in the interval [0, 1]. The number of children spawned by each parent is from a Binomial(4, 0.5) distribution.
example.1D
example.1D
A matrix.
Simulated data from a Neyman-Scott point process, with children points generated on the unit square. The number of children spawned by each parent is from a Binomial(2, 0.5) distribution.
example.2D
example.2D
A matrix.
Simulated data from a two-camera aerial survey.
example.twocamera
example.twocamera
A list.
Estimates parameters for a Neyman-Scott point process by maximising the Palm likelihood. This approach was first proposed by Tanaka et al. (2008) for two-dimensional Thomas processes. Further generalisations were made by Stevenson, Borchers, and Fewster (2019) and Jones-Todd et al. (2019).
fit.ns( points, lims, R, disp = "gaussian", child.dist = "pois", child.info = NULL, sibling.list = NULL, edge.correction = "pbc", start = NULL, bounds = NULL, use.bobyqa = FALSE, trace = FALSE )
fit.ns( points, lims, R, disp = "gaussian", child.dist = "pois", child.info = NULL, sibling.list = NULL, edge.correction = "pbc", start = NULL, bounds = NULL, use.bobyqa = FALSE, trace = FALSE )
points |
A matrix or list of matrices containing locations of observed points, where each row corresponds to a point and each column corresponds to a dimension. If a list, then the patterns are assumed to be independent and a single process is fitted to all. |
lims |
A matrix or list of matrices with two columns,
corresponding to the upper and lower limits of each dimension,
respectively. If a list, then each matrix provides the limits
for the corresponding pattern in |
R |
Truncation distance for the difference process. |
disp |
A character string indicating the distribution of
children around their parents. Use |
child.dist |
The distribution of the number of children
generated by a randomly selected parent. For a Poisson
distribution, use |
child.info |
A list of further information that is required about the distribution for the number of children generated by parents. See ‘Details’. |
sibling.list |
An optional list that comprises (i) a component
named |
edge.correction |
The method used for the correction of edge
effects. Either |
start |
A named vector of starting values for the model parameters. |
bounds |
A list with named components. Each component should be a vector of length two, giving the upper and lower bounds for the named parameter. |
use.bobyqa |
Logical; if |
trace |
Logical; if |
The parameter D
is the density of parent points, which is
always estimated. Possible additional parameters are
lambda
, the expected number of children generated per
parent (when child.dist = "pois"
).
p
, the proportion of the x
possible children
that are generated (when child.dist = "binomx"
).
kappa
, the average length of the surface phase of a
diving cetacean (when child.dist = "twocamera"
; see
Stevenson, Borchers, and Fewster, 2019).
sigma
, the standard deviation of dispersion along
each dimension (when disp
= "gaussian").
tau
, the maximum distance a child can be from its
parent (when disp
= "uniform").
The "child.info"
argument is required when child.dist
is set to "twocamera"
. It must be a list that comprises (i) a
component named w
, providing the halfwidth of the detection
zone; (ii) a component named b
, providing the halfwidth of
the survey area; (iii) a component named l
, providing the
time lag between cameras (in seconds); and (iv) a component named
tau
, providing the mean dive-cycle duration. See Stevenson,
Borchers, and Fewster (2019) for details.
An R6 reference class object.
Jones-Todd, C. M., Caie, P., Illian, J. B., Stevenson, B. C., Savage, A., Harrison, D. J., and Bown, J. L. (in press). Identifying prognostic structural features in tissue sections of colon cancer patients using point pattern analysis. Statistics in Medicine, 38: 1421–1441.
Stevenson, B. C., Borchers, D. L., and Fewster, R. M. (2019) Cluster capture-recapture to account for identification uncertainty on aerial surveys of animal populations. Biometrics, 75: 326–336.
Tanaka, U., Ogata, Y., and Stoyan, D. (2008) Parameter estimation and model selection for Neyman-Scott point processes. Biometrical Journal, 50: 43–57.
Use coef.palm to extract estimated parameters, and plot.palm to plot the estimated Palm intensity function. Use boot.palm to run a parametric bootstrap, allowing calculation of standard errors and confidence intervals.
See sim.ns to simulate from a Neyman-Scott point process.
## Fitting model to example data. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Printing estimates. coef(fit) ## Plotting the estimated Palm intensity. plot(fit) ## Not run: ## Simulating data and fitting additional models. set.seed(1234) ## One-dimensional Thomas process. data.thomas <- sim.ns(c(D = 10, lambda = 5, sigma = 0.025), lims = rbind(c(0, 1))) ## Fitting a model to these data. fit.thomas <- fit.ns(data.thomas$points, lims = rbind(c(0, 1)), R = 0.5) ## Three-dimensional Matern process. data.matern <- sim.ns(c(D = 10, lambda = 10, tau = 0.1), disp = "uniform", lims = rbind(c(0, 1), c(0, 2), c(0, 3))) ## Fitting a model to these data. fit.matern <- fit.ns(data.matern$points, lims = rbind(c(0, 1), c(0, 2), c(0, 3)), R = 0.5, disp = "uniform") ## End(Not run)
## Fitting model to example data. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Printing estimates. coef(fit) ## Plotting the estimated Palm intensity. plot(fit) ## Not run: ## Simulating data and fitting additional models. set.seed(1234) ## One-dimensional Thomas process. data.thomas <- sim.ns(c(D = 10, lambda = 5, sigma = 0.025), lims = rbind(c(0, 1))) ## Fitting a model to these data. fit.thomas <- fit.ns(data.thomas$points, lims = rbind(c(0, 1)), R = 0.5) ## Three-dimensional Matern process. data.matern <- sim.ns(c(D = 10, lambda = 10, tau = 0.1), disp = "uniform", lims = rbind(c(0, 1), c(0, 2), c(0, 3))) ## Fitting a model to these data. fit.matern <- fit.ns(data.matern$points, lims = rbind(c(0, 1), c(0, 2), c(0, 3)), R = 0.5, disp = "uniform") ## End(Not run)
Estimates animal density (amongst other parameters) from two-camera aerial surveys. This conceptualises sighting locations as a Neyman-Scott point pattern.
fit.twocamera( points, cameras = NULL, d, w, b, l, tau, R, edge.correction = "pbc", start = NULL, bounds = NULL, trace = FALSE )
fit.twocamera( points, cameras = NULL, d, w, b, l, tau, R, edge.correction = "pbc", start = NULL, bounds = NULL, trace = FALSE )
points |
A vector (or single-column matrix) containing the distance along the transect that each detection was made. |
cameras |
An optional vector containing the camera ID (either
|
d |
The length of the transect flown (in km). |
w |
The distance from the transect to which detection of individuals on the surface is certain. This is equivalent to the half-width of the detection zone. |
b |
The distance from the transect to the edge of the area of interest. Conceptually, the distance between the transect and the furthest distance a whale could be on the passing of the first camera and plausibly move into the detection zone by the passing of the second camera. |
l |
The lag between cameras (in seconds). |
tau |
Mean dive-cycle duration (in seconds). |
R |
Truncation distance (see fit.ns). |
edge.correction |
The method used for the correction of edge
effects. Either |
start |
A named vector of starting values for the model parameters. |
bounds |
A list with named components. Each component should be a vector of length two, giving the upper and lower bounds for the named parameter. |
trace |
Logical; if |
This function is simply a wrapper for fit.ns
, and
facilitates the fitting of the model proposed by Stevenson,
Borchers, and Fewster (2019). This function presents the
parameter D.2D
(two-dimensional cetacean density in
cetaceans per square km) rather than D
for enhanced
interpretability.
For further details on the cluster capture-recapture estimation approach, see Fewster, Stevenson and Borchers (2016).
An R6 reference class object.
Fewster, R. M., Stevenson, B. C., and Borchers, D. L. (2016) Trace-contrast methods for capture-recapture without capture histories. Statistical Science, 31: 245–258.
Stevenson, B. C., Borchers, D. L., and Fewster, R. M. (2019) Cluster capture-recapture to account for identification uncertainty on aerial surveys of animal populations. Biometrics, 75: 326–336.
Use coef.palm to extract estimated parameters, and plot.palm to plot the estimated Palm intensity function. Use boot.palm to run a parametric bootstrap, allowing calculation of standard errors and confidence intervals.
See sim.twocamera to simulate sightings from a two-camera aerial survey.
## Fitting model. fit <- fit.twocamera(points = example.twocamera$points, cameras = example.twocamera$cameras, d = 500, w = 0.175, b = 0.5, l = 20, tau = 110, R = 1) ## Printing estimates. coef(fit) ## Plotting the estimated Palm intensity. plot(fit)
## Fitting model. fit <- fit.twocamera(points = example.twocamera$points, cameras = example.twocamera$cameras, d = 500, w = 0.175, b = 0.5, l = 20, tau = 110, R = 1) ## Printing estimates. coef(fit) ## Plotting the estimated Palm intensity. plot(fit)
Estimates parameters for a void point process by maximising the Palm likelihood. This approach was first proposed by Tanaka et al. (2008) for two-dimensional Thomas processes. Generalisation to d-dimensional void processes was made by Jones-Todd et al. (in press).
fit.void( points, lims, R, edge.correction = "pbc", start = NULL, bounds = NULL, use.bobyqa = FALSE, trace = FALSE )
fit.void( points, lims, R, edge.correction = "pbc", start = NULL, bounds = NULL, use.bobyqa = FALSE, trace = FALSE )
points |
A matrix or list of matrices containing locations of observed points, where each row corresponds to a point and each column corresponds to a dimension. If a list, then the patterns are assumed to be independent and a single process is fitted to all. |
lims |
A matrix or list of matrices with two columns,
corresponding to the upper and lower limits of each dimension,
respectively. If a list, then each matrix provides the limits
for the corresponding pattern in |
R |
Truncation distance for the difference process. |
edge.correction |
The method used for the correction of edge
effects. Either |
start |
A named vector of starting values for the model parameters. |
bounds |
A list with named components. Each component should be a vector of length two, giving the upper and lower bounds for the named parameter. |
use.bobyqa |
Logical; if |
trace |
Logical; if |
Parameters to estimate are as follows:
Dc
,
the baseline density of points prior to the deletion process.
Dp
, the density of unobserved parents that cause voids.
tau
, the radius of the deletion process centred at each parent.
An R6 reference class object.
Jones-Todd, C. M., Caie, P., Illian, J. B., Stevenson, B. C., Savage, A., Harrison, D. J., and Bown, J. L. (in press). Identifying prognostic structural features in tissue sections of colon cancer patients using point pattern analysis. Statistics in Medicine, 38: 1421–1441.
Tanaka, U., Ogata, Y., and Stoyan, D. (2008) Parameter estimation and model selection for Neyman-Scott point processes. Biometrical Journal, 50: 43–57.
Use coef.palm to extract estimated parameters, and plot.palm to plot the estimated Palm intensity function. Use boot.palm to run a parametric bootstrap, allowing calculation of standard errors and confidence intervals.
See sim.void to simulate from a void process.
## Not run: set.seed(1234) ## Simulating a two-dimensional void process. void.data <- sim.void(c(Dc = 1000, Dp = 10, tau = 0.05), rbind(c(0, 1), c(0, 1))) ## Fitting model. fit <- fit.void(void.data$points, rbind(c(0, 1), c(0, 1)), R = 0.5) ## End(Not run)
## Not run: set.seed(1234) ## Simulating a two-dimensional void process. void.data <- sim.void(c(Dc = 1000, Dp = 10, tau = 0.05), rbind(c(0, 1), c(0, 1))) ## Fitting model. fit <- fit.void(void.data$points, rbind(c(0, 1), c(0, 1)), R = 0.5) ## End(Not run)
First proposed by Tanaka, Ogata, and Stoyan (2008), maximisation of the Palm likelihood can provide computationally efficient parameter estimation for point process models in situations where the full likelihood is intractable. This package contains functions to fit a variety of point process models, but is chiefly concerned with Neyman-Scott point processes (NSPPs).
The development of this package was motivated by the analysis of capture-recapture surveys on which individuals cannot be identified—the data from which can conceptually be seen as a NSPP (Fewster, Stevenson, and Borchers, 2016). As such, some of the functions in this package are specifically for the estimation of cetacean density from two-camera aerial surveys; see Stevenson, Borchers, and Fewster (2019).
This package can also fit void processes, which, along with NSPPs, have been fitted to patterns of colon cancer and stroma cell locations (Jones-Todd et al., 2019).
The main functions of this package are summarised below.
The fit.ns function fits NSPPs.
The fit.twocamera function estimates animal density from two-camera aerial surveys. This model is a NSPP and can be fitted using fit.ns, but it is more straightforward to use fit.twocamera.
The fit.void function fits void point processes.
Variance estimation is achieved by parametric bootstrap. The boot.palm function carries out this procedure from an object generated by one of the fitting functions, above. Confidence intervals and standard errors can be calculated from an object returned by boot.palm using confint.palm and coef.palm, respectively.
The sim.ns function simulates data from NSPPs.
The sim.twocamera function simulates detection data from two-camera aerial surveys.
The sim.void function simulates data from void point processes.
Fewster, R. M., Stevenson, B. C., and Borchers, D. L. (2016) Trace-contrast methods for capture-recapture without capture histories. Statistical Science, 31: 245–258.
Jones-Todd, C. M., Caie, P., Illian, J. B., Stevenson, B. C., Savage, A., Harrison, D. J., and Bown, J. L. (2019). Identifying prognostic structural features in tissue sections of colon cancer patients using point pattern analysis. Statistics in Medicine, 38: 1421–1441.
Stevenson, B. C., Borchers, D. L., and Fewster, R. M. (2019) Cluster capture-recapture to account for identification uncertainty on aerial surveys of animal populations. Biometrics, 75: 326–336.
Tanaka, U., Ogata, Y., and Stoyan, D. (2008) Parameter estimation and model selection for Neyman-Scott point processes. Biometrical Journal, 50: 43–57.
Plots a fitted Palm intensity function from an object returned by fit.ns.
## S3 method for class 'palm' plot(x, xlim = NULL, ylim = NULL, show.empirical = TRUE, breaks = 50, ...)
## S3 method for class 'palm' plot(x, xlim = NULL, ylim = NULL, show.empirical = TRUE, breaks = 50, ...)
x |
A fitted model from fit.ns. |
xlim |
Numeric vector giving the x-coordinate range. |
ylim |
Numeric vector giving the y-coordinate range. |
show.empirical |
Logical, if |
breaks |
The number of breakpoints between cells for the empirical Palm intensity. |
... |
Other parameters (for S3 generic compatibility). |
## Fit model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Plot fitted Palm intensity. plot(fit)
## Fit model. fit <- fit.ns(example.2D, lims = rbind(c(0, 1), c(0, 1)), R = 0.5) ## Plot fitted Palm intensity. plot(fit)
Synthetic data constructed from circle-back aerial survey data; see Stevenson, Borchers, and Fewster (2019).
porpoise.data
porpoise.data
A list.
Stevenson, B. C., Borchers, D. L., and Fewster, R. M. (2019) Cluster capture-recapture to account for identification uncertainty on aerial surveys of animal populations. Biometrics, 75: 326–336.
Generates points from a Neyman-Scott point process using parameters provided by the user.
sim.ns( pars, lims, disp = "gaussian", child.dist = "pois", parents = NULL, child.info = NULL )
sim.ns( pars, lims, disp = "gaussian", child.dist = "pois", parents = NULL, child.info = NULL )
pars |
A named vector containing the values of the parameters of the process that generates the points. |
lims |
A matrix or list of matrices with two columns,
corresponding to the upper and lower limits of each dimension,
respectively. If a list, then each matrix provides the limits
for the corresponding pattern in |
disp |
A character string indicating the distribution of
children around their parents. Use |
child.dist |
The distribution of the number of children
generated by a randomly selected parent. For a Poisson
distribution, use |
parents |
An optional matrix containing locations of
parents. If this is provided, then the parameter |
child.info |
A list of further information that is required about the distribution for the number of children generated by parents. See ‘Details’. |
For a list of possible parameter names, see fit.ns.
The "child.info"
argument is required when child.dist
is set to "twocamera"
. It must be a list that comprises (i) a
component named w
, providing the halfwidth of the detection
zone; (ii) a component named b
, providing the halfwidth of
the survey area; (iii) a component named l
, providing the
time lag between cameras (in seconds); and (iv) a component named
tau
, providing the mean dive-cycle duration. See Stevenson,
Borchers, and Fewster (2019) for details.
A list. The first component gives the Cartesian coordinates of the generated points. The second component returns the parent locations. A third component may provide sibling information.
Stevenson, B. C., Borchers, D. L., and Fewster, R. M. (2019) Cluster capture-recapture to account for identification uncertainty on aerial surveys of animal populations. Biometrics, 75: 326–336.
## Simulating from a one-dimensional Thomas process. data.thomas <- sim.ns(c(D = 10, lambda = 5, sigma = 0.025), lims = rbind(c(0, 1))) ## Simulating from a three-dimensional Matern process. data.matern <- sim.ns(c(D = 10, lambda = 10, tau = 0.1), disp = "uniform", lims = rbind(c(0, 1), c(0, 2), c(0, 3)))
## Simulating from a one-dimensional Thomas process. data.thomas <- sim.ns(c(D = 10, lambda = 5, sigma = 0.025), lims = rbind(c(0, 1))) ## Simulating from a three-dimensional Matern process. data.matern <- sim.ns(c(D = 10, lambda = 10, tau = 0.1), disp = "uniform", lims = rbind(c(0, 1), c(0, 2), c(0, 3)))
Simulating data from two-camera aerial surveys.
sim.twocamera(pars, d, w, b, l, tau, parents = NULL)
sim.twocamera(pars, d, w, b, l, tau, parents = NULL)
pars |
A vector containing elements named |
d |
The length of the transect flown (in km). |
w |
The distance from the transect to which detection of individuals on the surface is certain. This is equivalent to the half-width of the detection zone. |
b |
The distance from the transect to the edge of the area of interest. Conceptually, the distance between the transect and the furthest distance a whale could be on the passing of the first camera and plausibly move into the detection zone by the passing of the second camera. |
l |
The lag between cameras (in seconds). |
tau |
Mean dive-cycle duration (in seconds). |
parents |
An optional vector containing the parent locations
for all animals within the area of interest, given in distance
along the transect (in km). If this is provided, then the
parameter |
A list. The first component gives the distance along the transect of detected individuals. The second gives the parent locations. The third identifies which parent location generated each detected individual. The fourth gives the distance from the transect centre line of the detection location. The fifth provides observed sibling information.
twocamera.data <- sim.twocamera(c(D.2D = 1.3, kappa = 27, sigma = 0.02), d = 500, w = 0.175, b = 0.5, l = 20, tau = 110)
twocamera.data <- sim.twocamera(c(D.2D = 1.3, kappa = 27, sigma = 0.02), d = 500, w = 0.175, b = 0.5, l = 20, tau = 110)
Generates points from a void point process using parameters provided by the user.
sim.void(pars, lims, parents = NULL)
sim.void(pars, lims, parents = NULL)
pars |
A named vector containing the values of the parameters of the process that generates the points. |
lims |
A matrix or list of matrices with two columns,
corresponding to the upper and lower limits of each dimension,
respectively. If a list, then each matrix provides the limits
for the corresponding pattern in |
parents |
An optional matrix containing locations of
parents. If this is provided, then the parameter |
For a list of possible parameter names, see fit.ns.
A list. The first component gives the Cartesian coordinates of the generated points. The second component returns the parent locations.
## Two-dimensional void process. void.data <- sim.void(c(Dc = 1000, Dp = 10, tau = 0.05), rbind(c(0, 1), c(0, 1))) ## Plotting the data. plot(void.data$points) points(void.data$parents, pch = 16, col = "red")
## Two-dimensional void process. void.data <- sim.void(c(Dc = 1000, Dp = 10, tau = 0.05), rbind(c(0, 1), c(0, 1))) ## Plotting the data. plot(void.data$points) points(void.data$parents, pch = 16, col = "red")
Provides a useful summary of the model fit.
## S3 method for class 'palm' summary(object, ...)
## S3 method for class 'palm' summary(object, ...)
object |
A fitted model returned by fit.ns. |
... |
Other parameters (for S3 generic compatibility). |