performs a scatter of points without labels by a kernel Density Estimation in One or Two Dimensions
s.kde2d(dfxy, xax = 1, yax = 2, pch = 20, cpoint = 1, neig = NULL, cneig = 2,
xlim = NULL, ylim = NULL, grid = TRUE, addaxes = TRUE, cgrid = 1,
include.origin = TRUE, origin = c(0, 0), sub = "", csub = 1.25,
possub = "bottomleft", pixmap = NULL, contour = NULL,
area = NULL, add.plot = FALSE)
The matched call.
a data frame with at least two coordinates
the column number for the x-axis
the column number for the y-axis
if cpoint
> 0, an integer specifying the symbol or the
single character to be used in plotting points
a character size for plotting the points, used with
par("cex")*cpoint
. If zero, no points are drawn
a neighbouring graph
a size for the neighbouring graph lines used with
par("lwd")*cneig
the ranges to be encompassed by the x axis, if NULL, they are computed
the ranges to be encompassed by the y axis, if NULL, they are computed
a logical value indicating whether a grid in the background of the plot should be drawn
a logical value indicating whether the axes should be plotted
a character size, parameter used with par("cex")* 'cgrid' to indicate the mesh of the grid
a logical value indicating whether the point "origin" should be belonged to the graph space
the fixed point in the graph space, for example c(0,0) the origin axes
a string of characters to be inserted as legend
a character size for the legend, used with par("cex")*csub
a string of characters indicating the sub-title position ("topleft", "topright", "bottomleft", "bottomright")
an object pixmap
displayed in the map background
a data frame with 4 columns to plot the contour of the map : each row gives a segment (x1,y1,x2,y2)
a data frame of class 'area' to plot a set of surface units in contour
if TRUE uses the current graphics window
Daniel Chessel
# To recognize groups of points
if(!adegraphicsLoaded()) {
data(rpjdl)
coa1 <- dudi.coa(rpjdl$fau, scannf = FALSE, nf = 3)
s.kde2d(coa1$li)
}
Run the code above in your browser using DataLab