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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cell-addr.R
\name{addr_row}
\alias{addr_row}
\alias{addr_row.cell_addr}
\title{Get row from cell location or reference}
\usage{
addr_row(x, ...)
\method{addr_row}{cell_addr}(x, ...)
}
\arguments{
\item{x}{a suitable representation of cell(s) or a cell area reference}
\item{...}{further arguments passed to or from other methods}
}
\value{
integer vector
}
\description{
Get row from cell location or reference
}
\section{Methods (by class)}{
\itemize{
\item \code{cell_addr}: Method for \code{\link{cell_addr}} objects
(ca <- cell_addr(1:4, 3))
addr_row(ca)
}}
|