Frame Module
F# module extensions for reading Excel files.
Open Deedle.ExcelReader and then call these as Frame.readExcel,
Frame.readExcelSheet, etc.
Functions and values
| Function or value |
Description
|
|
Read the first worksheet of an Excel file as a
|
Full Usage:
readExcelSheet path sheetName
Parameters:
string
sheetName : string
Returns: Frame<int, string>
|
Read a specific worksheet by name from an Excel file.
|
Full Usage:
readExcelSheetByIndex path sheetIndex
Parameters:
string
sheetIndex : int
Returns: Frame<int, string>
|
Read a specific worksheet by zero-based index from an Excel file.
|
Full Usage:
sheetNames path
Parameters:
string
Returns: string list
|
Return the names of all worksheets in an Excel file.
|
Deedle