jitter_norm | R Documentation |
Apply jitter using normal distribution
jitter_norm(x, factor = 1, amount = NULL, ...)
x |
numeric vector |
factor |
numeric value to define the magnitude of jitter,
multiplied by the default jitter which is 1/10 the median
difference between unique values in |
amount |
optional numeric value indicating a fixed |
... |
additional arguments are ignored. |
This function applies a jitter (noise) to points by adding
random values from a normal distribution, where the argument sd
is used to apply the jitter magnitude.
The default jitter is defined as 1/10 the median difference between
unique, finite input values, which can be scaled using the argument
factor
. Note the use of "unique" input values, which ensures the
presence of duplicate values does not skew the jitter toward zero.
When applied to three dimensions, this results in jitter consistently
scaled relative to the range of values in each dimension. That is,
points will appear to have a radial jitter.
Other jam plot functions:
bgaPlotly3d()
,
factor2label()
,
gene2gg()
,
grl2df()
,
plotSashimi()
,
prepareSashimi()
,
stackJunctions()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.