read.gnumeric.sheet.info {gnumeric}R Documentation

Read names and sizes of sheets from a gnumeric spreadsheet file

Description

Read sheet.name, width and height of sheets of a gnumeric file to a data.frame. Also constructs cell name for the bottom.right cells, these can be passed to read.gnumeric.sheet or read.gnumeric.range

Usage

df <- read.gnumeric.sheet.info(file);

Arguments

file Name of gnumeric file to read from.

Value

A data.frame with colummns
Column name Type Note
sheet.name string
width integer Number of columns
height integer Number of rows
bottom.right string Bottom right cell name or
NA if sheet is empty

Examples

## Read names and sizes of sheets from 'file.gnumeric'
## Not run: 
df <- read.gnumeric.sheet.info( file="file.gnumeric" );
## End(Not run)

[Package gnumeric version 0.5-3 Index]