You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-35Lines changed: 9 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,14 @@
11
11
12
12
ExcelReaders is a package that provides functionality to read Excel files.
13
13
14
+
**WARNING**: Version v0.9.0 removed all support for [DataFrames.jl](https://github.com/JuliaData/DataFrames.jl)
15
+
from this package. The [ExcelFiles.jl](https://github.com/davidanthoff/ExcelFiles.jl)
16
+
package now provides functionality to read data from an Excel file into
17
+
a ``DataFrame`` (or any other table type), and users are encouraged to use
18
+
that package for tabular data going forward. Version v0.9.0 also no longer
19
+
uses [DataArrays.jl](https://github.com/JuliaStats/DataArrays.jl), but instead
20
+
is based on [DataValues.jl](https://github.com/davidanthoff/DataValues.jl).
21
+
14
22
## Installation
15
23
16
24
Use ``Pkg.add("ExcelReaders")`` in Julia to install ExcelReaders and its dependencies.
@@ -31,7 +39,7 @@ using ExcelReaders
31
39
data =readxl("Filename.xlsx", "Sheet1!A1:C4")
32
40
````
33
41
34
-
This will return a ``DataMatrix{Any}`` with all the data in the cell range A1 to C4 on Sheet1 in the Excel file Filename.xlsx.
42
+
This will return an array with all the data in the cell range A1 to C4 on Sheet1 in the Excel file Filename.xlsx.
35
43
36
44
If you expect to read multiple ranges from the same Excel file you can get much better performance by opening the Excel file only once:
37
45
@@ -62,37 +70,3 @@ This will read all content on Sheet1 in the file Filename.xlsx. Eventual blank r
62
70
-``ncols`` accepts either ``:all`` (default) or a postiive integer. With ``:all``, all columns (except skipped ones) are read. An integer specifies the exact number of columns to be read.
63
71
64
72
``readxlsheet`` also accepts an ExcelFile (as obtained from ``openxl``) as its first argument.
0 commit comments