Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to import .ods?

I'm trying to import data (.ods file) and I know how to import .csv, .xls etc. but I strand all the time. I tried it with the package Gnumeric but R tells me that the required program 'ssconvert' cannot be found.

like image 437
Thomas Avatar asked Feb 24 '14 13:02

Thomas


People also ask

Can I open ODS files with Excel?

From our list of applications, Microsoft Excel allows us to open, view, as well as edit ods files.


1 Answers

I wrote a package called readODS which has a function read.ods that returns ods files as data.frames (a list of data.frames, one per sheet)

It is available on CRAN, see here!

Source and bug reports here: https://github.com/chainsawriot/readODS

like image 79
phonixor Avatar answered Oct 11 '22 03:10

phonixor