Nothing
#' @title Double Orthographic Display
#' @description Copy of \code{oro.nifti}'s \code{\link{orthographic}} function
#' with some tweaks such as adding L/R designations for left and right
#' @return NULL
#' @seealso \link{orthographic}
#' @param x is an object of class nifti or similar.
#' @param y is an object of class nifti or similar to be set aside x.
#' @param col.y is grayscale (by default).
#' @param NA.x Set any values of 0 in \code{x} to \code{NA}
#' @param mfrow (numeric) layout of the 3 slices
#' @param add Should the y-plot be added or its own plot? Used
#' in \code{double_ortho}
#' @param ... other arguments to \code{\link{ortho2}}
#' @export
double_ortho = function (x, y = NULL, col.y = gray(0:64/64),
NA.x = TRUE,
mfrow=c(2,4), add = FALSE,
...)
{
ortho2(x=x, y=y, col.y = col.y,
NA.x = NA.x,
add = add, mfrow= mfrow, ...)
}
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.