I need to read an excel file in Julia. I tried the package "ExcelReaders". However, the package requires an additional Python or xlrd package. Although it uses the conda.jl package to automatically install these dependencies, I constantly run into various installation problems. Is there an easy way to read excel in Julia? Has anyone tried the package Taro.jl?
The Taro.jl package works well to read Excel in Julia. The package can be installed using Pkg.add(Taro) . After installing the package, you can download it using using Taro; Taro.init() using Taro; Taro.init() . You can use Taro.readxl() to read excel files. The following post provides some nice tutorial on reading excel files in Julia using Taro.jl:
Pkg.add(Taro)
using Taro; Taro.init()
Taro.readxl()
https://economictheoryblog.com/2018/01/03/how-to-read-an-excel-file-in-julia-language-an-example/
Tarot works very well (even if I say so). You need to install java on the computer, but after that Pkg.add(Taro) install all the dependencies for you. And, I think you're lucky with the tarot with more complex excel files.
If you're comfortable with the ods format, you can also use the OdsIO.jl package.
It also uses the python module ( ezodf ), but it should install it automatically on both Windows and Linux when installing OdsIO.jl.
ezodf
If you can save as .csv then CSV.jl works well.
.csv
ExcelReaders Package Also Available
https://github.com/davidanthoff/ExcelReaders.jl
Source: https://habr.com/ru/post/1274679/More articles:How to request multiple values ββfor a given key in firebase - javascriptHow to perform complex logical OR queries in Cloud Firestore? - databaseSubtype implementation of polymorphic variant does not match signature - ocamlIs an IS type constructor a monad or a monad? - language-agnosticJAVA 8 returns the return value back to the same method x number of times - javaVue.js: the best way to implement MPA (multi-page application) in laravel - javascriptSelect the open onclick direction field - display the data up and down - javascriptto indicate the position of some nodes in a graph - javascriptGoogle Calendar API and node js - googleAuth problem is not a constructor - javascriptRabbitMQ security construct for queuing from the server (and use from the client) - rabbitmqAll Articles