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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/layout.R
\name{normalize}
\alias{normalize}
\title{Normalize layout}
\usage{
normalize(
xmin = -1,
xmax = 1,
ymin = xmin,
ymax = xmax,
zmin = xmin,
zmax = xmax
)
}
\arguments{
\item{xmin, xmax}{Minimum and maximum for x coordinates.}
\item{ymin, ymax}{Minimum and maximum for y coordinates.}
\item{zmin, zmax}{Minimum and maximum for z coordinates.}
}
\description{
Scale coordinates of a layout.
}
\examples{
layout_(make_ring(10), with_fr(), normalize())
}
\seealso{
\code{\link[=merge_coords]{merge_coords()}}, \code{\link[=layout_]{layout_()}}.
Other layout modifiers:
\code{\link{component_wise}()}
Other graph layouts:
\code{\link{add_layout_}()},
\code{\link{component_wise}()},
\code{\link{layout_}()},
\code{\link{layout_as_bipartite}()},
\code{\link{layout_as_star}()},
\code{\link{layout_as_tree}()},
\code{\link{layout_in_circle}()},
\code{\link{layout_nicely}()},
\code{\link{layout_on_grid}()},
\code{\link{layout_on_sphere}()},
\code{\link{layout_randomly}()},
\code{\link{layout_with_dh}()},
\code{\link{layout_with_fr}()},
\code{\link{layout_with_gem}()},
\code{\link{layout_with_graphopt}()},
\code{\link{layout_with_kk}()},
\code{\link{layout_with_lgl}()},
\code{\link{layout_with_mds}()},
\code{\link{layout_with_sugiyama}()},
\code{\link{merge_coords}()},
\code{\link{norm_coords}()}
}
\concept{graph layouts}
\concept{layout modifiers}
|