| R1C1_to_A1 {cellranger} | R Documentation |
Convert R1C1 positioning notation to A1 notation
Description
Convert cell reference strings from R1C1 to A1 format. This only makes sense
for absolute references, such as "R4C2". Why? Because otherwise, we'd
have to know the host cell of the reference. Relative and mixed references,
like ("R[3]C[-1]" and "R[1]C5"), will therefore return
NA.
Usage
R1C1_to_A1(x, strict = TRUE)
Arguments
x |
vector of cell positions in R1C1 notation |
strict |
logical, affects reading and writing of A1 formatted cell
references. When |
Value
character vector of absolute cell references in A1 notation
Examples
R1C1_to_A1("R1C1")
R1C1_to_A1("R10C52", strict = FALSE)
R1C1_to_A1(c("R1C1", "R10C52", "RC4", "R[-3]C[9]"))