Learn R Programming

⚠️There's a newer version (2.3.2) of this package.Take me there.

readODS

read ODS files into R

how it works

ODS (Open Document Spreadsheets) files are basically a zip file with all the stuff in it. The file contents.xml is a XML file containing all the numbers and formulas used in the ODS spreadsheets.

Installation

Stable version

From the CRAN with

install.packages("readODS")
library(readODS)

Development version

From github with the devtools package WARNING: THIS MAY BE UNSTABLE!

if(!require(devtools)){
    install.packages("devtools")
    library(devtools)
}
detach("package:readODS")
remove.packages("readODS")
install_github(repo="readODS", username ="chainsawriot", ref="master")
library(readODS)

Usage

read_ods("table.ods", header = TRUE) ## return only the first sheet
read_ods("multisheet.ods", sheet = 2, formula_as_formula = TRUE) ## return the second sheet with formula read as formula
read.ods("multisheet.ods") ## for backward compatibility purpose, not recommended.

Testing

Various ods files generated by LibreOffice Calc and Google Sheets have been tested. The package has been tested on Debian 8.

License

GPL3

Copy Link

Version

Install

install.packages('readODS')

Monthly Downloads

8,647

Version

1.6.7

License

GPL-3

Maintainer

Chung-hong Chan

Last Published

November 26th, 2018

Functions in readODS (1.6.7)

read_ods

read data from ods files
get_num_sheet_in_ods

get the number of sheets in an ods file
ods_sheets

List all sheets in an ods file.
write_ods

write data to ods file