1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/scatterD3.R
\name{scatterD3}
\alias{scatterD3}
\title{Scatter plot HTML widget}
\source{
D3.js was created by Michael Bostock. See \url{https://d3js.org/}
}
\usage{
scatterD3(
x,
y,
data = NULL,
lab = NULL,
x_log = FALSE,
y_log = FALSE,
point_size = 64,
labels_size = 10,
labels_positions = NULL,
point_opacity = 1,
opacities = NULL,
hover_size = 1,
hover_opacity = NULL,
fixed = FALSE,
col_var = NULL,
col_continuous = NULL,
colors = NULL,
ellipses = FALSE,
ellipses_level = 0.95,
symbol_var = NULL,
symbols = NULL,
size_var = NULL,
size_range = c(10, 300),
sizes = NULL,
col_lab = NULL,
symbol_lab = NULL,
size_lab = NULL,
key_var = NULL,
type_var = NULL,
opacity_var = NULL,
unit_circle = FALSE,
url_var = NULL,
tooltips = TRUE,
tooltip_text = NULL,
tooltip_position = "bottom right",
xlab = NULL,
ylab = NULL,
html_id = NULL,
width = NULL,
height = NULL,
legend_width = 150,
left_margin = 30,
xlim = NULL,
ylim = NULL,
dom_id_reset_zoom = "scatterD3-reset-zoom",
dom_id_svg_export = "scatterD3-svg-export",
dom_id_lasso_toggle = "scatterD3-lasso-toggle",
transitions = FALSE,
menu = TRUE,
lasso = FALSE,
lasso_callback = NULL,
click_callback = NULL,
init_callback = NULL,
zoom_callback = NULL,
zoom_on = NULL,
zoom_on_level = NULL,
disable_wheel = FALSE,
lines = data.frame(slope = c(0, Inf), intercept = c(0, 0), stroke_dasharray = c(5,
5)),
axes_font_size = "100\%",
legend_font_size = "100\%",
caption = NULL
)
}
\arguments{
\item{x}{numerical vector of x values, or variable name if data is not NULL}
\item{y}{numerical vector of y values, or variable name if data is not NULL}
\item{data}{default dataset to use for plot.}
\item{lab}{optional character vector of text labels, or variable name if
data is not NULL}
\item{x_log}{if TRUE, set x scale as logarithmic}
\item{y_log}{if TRUE, set y scale as logarithmic}
\item{point_size}{points size. Ignored if size_var is not NULL.}
\item{labels_size}{text labels size}
\item{labels_positions}{Either a data frame, as created by the
"Export labels positions" menu entry, giving each label x and y
position, or the value `"auto"` to use an automatic labeler.}
\item{point_opacity}{points opacity, as an integer (same opacity for all
points).}
\item{opacities}{named list or named vector of opacities. Each opacity
will be associated by their name within `opacity_var`.}
\item{hover_size}{factor for changing size when hovering points}
\item{hover_opacity}{points opacity when hovering}
\item{fixed}{force a 1:1 aspect ratio}
\item{col_var}{optional vector for points color mapping, or variable name
if data is not NULL}
\item{col_continuous}{specify if the color scale must be continuous. By
default, if \code{col_var} is numeric, not a factor, and has more than
6 unique values, it is considered as continuous.}
\item{colors}{vector of custom points colors. Colors must be defined as an
hexadecimal string (eg "#FF0000"). If \code{colors} is a named list or
a named vector, then the colors will be associated with their name
within \code{col_var}. A string can be given to specify a d3-scale-chromatic
function name (for example, "interpolatePurples" or "schemeTableau10")}
\item{ellipses}{draw confidence ellipses for points or the different color
mapping groups}
\item{ellipses_level}{confidence level for ellipses (0.95 by default)}
\item{symbol_var}{optional vector for points symbol mapping, or variable
name if data is not NULL}
\item{symbols}{vector of custom points symbols. Symbols must be defined as
character strings with the following possible values : "circle", "cross",
"diamond", "square", "star", "triangle", and "wye". If \code{symbols} is a
named list or a named vector, then the symbols will be associated with their
name within \code{symbol_var}.}
\item{size_var}{optional vector for points size mapping, or variable name
if data is not NULL}
\item{size_range}{numeric vector of length 2, giving the minimum and
maximum point sizes when mapping with size_var}
\item{sizes}{named list or named vector of sizes. Each size
will be associated by their name within `size_var`.}
\item{col_lab}{color legend title. Set to NA to remove color legend entirely.}
\item{symbol_lab}{symbols legend title. Set to NA to remove symbol legend entirely.}
\item{size_lab}{size legend title. Set to NA to remove size legend entirely.}
\item{key_var}{optional vector of rows ids, or variable name if data is not
NULL. This is passed as a key to d3, and is only added in shiny apps
where displayed rows are filtered interactively.}
\item{type_var}{optional vector of points type : "point" for a dot
(default), "arrow" for an arrow starting from the origin.}
\item{opacity_var}{optional vector of points opacity (values between 0 and
1)}
\item{unit_circle}{set tot TRUE to draw a unit circle}
\item{url_var}{optional vector of URLs to be opened when a point is clicked}
\item{tooltips}{logical value to display tooltips when hovering points}
\item{tooltip_text}{optional character vector of tooltips text}
\item{tooltip_position}{the tooltip position relative to its point. Must a
combination of "top" or "bottom" with "left" or "right" (default is
"bottom right").}
\item{xlab}{x axis label}
\item{ylab}{y axis label.}
\item{html_id}{manually specify an HTML id for the svg root node. A random
one is generated by default.}
\item{width}{figure width, computed when displayed}
\item{height}{figure height, computed when displayed}
\item{legend_width}{legend area width, in pixels. Set to 0 to disable
legend completely.}
\item{left_margin}{margin on the left of the plot, in pixels}
\item{xlim}{numeric vector of length 2, manual x axis limits}
\item{ylim}{numeric vector of length 2, manual y axis limits}
\item{dom_id_reset_zoom}{HTML DOM id of the element to bind the
"reset zoom" control to.}
\item{dom_id_svg_export}{HTML DOM id of the element to bind the
"svg export" control to.}
\item{dom_id_lasso_toggle}{HTML DOM id of the element to bind the
"toggle lasso" control to.}
\item{transitions}{if TRUE, data updates are displayed with smooth
transitions, if FALSE the whole chart is redrawn. Only used within
shiny apps.}
\item{menu}{wether to display the tools menu (gear icon)}
\item{lasso}{logical value to add
{https://github.com/skokenes/D3-Lasso-Plugin}{d3-lasso-plugin} feature}
\item{lasso_callback}{the body of a JavaScript callback function with the
argument \code{sel} to be applied to a lasso plugin selection}
\item{click_callback}{the body of a JavaScript callback function whose
inputs are html_id, and the index of the clicked element.}
\item{init_callback}{the body of a JavaScript callback function applied
to the scatter object at init time.}
\item{zoom_callback}{the body of a JavaScript callback function whose
inputs are the new xmin, xmax, ymin and ymax after a zoom action is
triggered.}
\item{zoom_on}{coordinates where to center zoom on plot draw or update.}
\item{zoom_on_level}{zoom level on plot draw or update. Ignored if `zoom_on` is NULL.}
\item{disable_wheel}{if TRUE, disable zooming with mousewheel.}
\item{lines}{a data frame with at least the \code{slope} and
\code{intercept} columns, and as many rows as lines to add to
scatterplot. Style can be added with \code{stroke}, \code{stroke_width}
and \code{stroke_dasharray} columns. To draw a vertical line, pass
\code{Inf} as \code{slope} value.}
\item{axes_font_size}{font size for axes text (any CSS compatible value)}
\item{legend_font_size}{font size for legend text (any CSS compatible
value)}
\item{caption}{caption to be displayed when clicking on the corresponding
icon. Either a character string, or a list with title, subtitle and
text elements.}
}
\description{
Generates an interactive scatter plot based on d3.js.
Interactive features include zooming, panning, text labels moving, tooltips,
fading effects in legend. Additional handlers are provided to change label
size, point opacity or export the figure as an SVG file via HTML form controls.
}
\details{
Interactive scatter plots based on htmlwidgets and d3.js
}
\examples{
scatterD3(x = mtcars$wt, y = mtcars$mpg, data=NULL, lab = rownames(mtcars),
col_var = mtcars$cyl, symbol_var = mtcars$am,
xlab = "Weight", ylab = "Mpg", col_lab = "Cylinders",
symbol_lab = "Manual transmission", html_id = NULL)
}
|