smoothScatterJam | R Documentation |
Produce smooth scatter plot, a helper function called by
plotSmoothScatter()
.
smoothScatterJam(
x,
y = NULL,
nbin = 256,
bandwidth,
colramp = grDevices::colorRampPalette(c("white", "lightblue", "blue", "orange",
"orangered2")),
nrpoints = 100,
pch = ".",
cex = 1,
col = "black",
transformation = function(x) x^0.25,
postPlotHook = graphics::box,
xlab = NULL,
ylab = NULL,
xlim,
ylim,
add = FALSE,
xaxs = graphics::par("xaxs"),
yaxs = graphics::par("yaxs"),
xaxt = graphics::par("xaxt"),
yaxt = graphics::par("yaxt"),
useRaster = NULL,
...
)
x |
|
y |
|
nbin |
|
bandwidth |
|
colramp |
|
nrpoints |
|
pch |
|
cex |
|
col |
|
transformation |
|
postPlotHook |
|
xlab |
|
ylab |
|
xlim |
|
ylim |
|
add |
|
xaxs |
|
yaxs |
|
xaxt |
|
yaxt |
|
useRaster |
|
... |
additional arguments are passed to |
For general purposes, use plotSmoothScatter()
as a replacement
for graphics::smoothScatter()
, which produces better default
settings for pixel size and density bandwidth.
This function is only necessary in order to override the
graphics::smoothScatter()
function which calls
graphics::image.default()
.
Instead, this function calls imageDefault()
which is required
in order to utilize custom raster image scaling, particularly important
when the x- and y-axis ranges are not similar, e.g. where the x-axis spans
10 units, but the y-axis spans 10,000 units.
list
of elements sufficient to call graphics::image()
,
also by default this function is called for the byproduct of
creating a figure.
graphics::smoothScatter()
Other jam internal functions:
handleArgsText()
,
jamCalcDensity()
,
make_html_styles()
,
make_styles()
x1 <- rnorm(1000);
y1 <- (x1 + 5)* 4 + rnorm(1000);
smoothScatterJam(x=x1, y=y1, bandwidth=c(0.05, 0.3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.