clusterer(X, Y, xloc = NULL, xyp = TRUE, threshold = 1e-08,
linkage.method = "complete", stand = TRUE, trans = "identity",
verbose = FALSE, ...)## S3 method for class 'clusterer':
summary(object, ...)
## S3 method for class 'clusterer':
plot(x, ...)
## S3 method for class 'summary.clusterer':
plot(x, ...)
clusterer
(or summary.clusterer
in the case of plot.summary.clusterer
).hclust
.xloc
and each field first be standardized before performing cluster analysis?xyp
is TRUE. Default applies no transformation.hclust
function. In the case of the summary
method function, z
and/or sigma
giving a numeric value used to find the cut-off given by median + z*sigma for detemining matched objIf it is desired to simply look at the CA for the two fields, the function hclust from fastcluster can be used, which essentially replaces the hclust function from the stats package with a faster version, but otherwise operates the same as far as what is returned, etc., and the same method functions can be employed.
The plot
method function creates a 4 by 2 panel of plots. The top two plots give image plots of the verification and forecast fields with grid points below the threshold(s) showing zero. The next two plots are dendrograms as performed by the plot method function for hclust
(dendrogram
) objects. The next row gives a histogram of the minimum inter-cluster distances, then box plots showing the hits, misses and false alarms for every possible combination of levels of each CA. Finally, the bottom two plots show, for each combination of CA level (i.e., numbers of clusters), the CSI and average error (inter-cluster distance) for all matched objects. These last three plots are the ones made by the plot method for values returned from the summary
method function.
hclust
, hclust
, as.dendrogram
, cutree
data(UKobs6)
data(UKfcst6)
look <- clusterer(X=UKobs6, Y=UKfcst6, threshold=16, trans="log", verbose=TRUE)
plot(look)
Run the code above in your browser using DataLab