Nothing
#' Plot coloured line(s) in 3 dimensions with plot_ly
#'
#' This function is used to plot three dimensional lines with segments colored. It may be just as simple to use plotly::plot_ly() directly.
#' @param x name of object or variable containing data for x axis
#' @param y name of object or variable containing data for y axis
#' @param z name of object or variable containing data for z axis
#' @param c name of object or variable by which to color
#' @param ... Additional inputs for plot_ly()
#' @return a plot_ly() graphics object
#' @examples
#' col_line3(1:20, 1:20, 1:20, 1:20)
#' @export
#' @seealso \code{\link{cline}}
#' @note x, y, z and c must all be the same size vectors. The color axis will by default span the range of values in c, i.e., caxis will be c(min(min(c)), max(max(c))).
col_line3 <- function(x, y, z = 0, c, ...) {
if (missing(x) | missing(y)) {
stop("Inputs x and y are required for col_line3 unless formula is provided.\n")
}
if (!inherits(x, 'formula')){
x_formula <- stats::as.formula(paste("~", quote(x)))
}else{
x_formula <- x
}
if (!inherits(y, 'formula')){
y_formula <- stats::as.formula(paste("~", quote(y)))
}else{
y_formula <- y
}
if (!inherits(z, 'formula')){
z_formula <- stats::as.formula(paste("~ -", quote(z)))
}else{
z_formula <- z
}
if (!inherits(c, 'formula')){
color_formula <- stats::as.formula(paste("~", quote(c)))
}else{
color_formula <- c
}
plotly::plot_ly(
x = x_formula, y = y_formula, z = z_formula,
type = "scatter3d", mode = "lines", color = color_formula,
...
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.