Learn R Programming

xlcharts (version 0.0.1)

Reference: Reference

Description

Normalise cell range references

https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.reference.html

Usage

Reference(
  worksheet = NULL,
  min_col = NULL,
  min_row = NULL,
  max_col = NULL,
  max_row = NULL,
  range_string = NULL,
  ...
)

Value

An openpyxl Python object.

Arguments

worksheet

worksheet

min_col

min_col

min_row

min_row

max_col

max_col

max_row

max_row

range_string

range_string

...

Additional arguments, i.e. kwargs.

Examples

Run this code
if (FALSE) {
wb <- Workbook()
Reference(worksheet = wb$active, min_col = 1L, min_row = 1L, max_col = 1L, max_row = 1L)
}

Run the code above in your browser using DataLab