Hi All,I'm trying to read some data fron a XLSX file following this directive, "3. Reading data from fileIn most real-world scenarios the data is located in a file or
database. The support for database connections will be added in future
releases. Right now DataFrame provides you the methods for loading data from two most commot file formats: CSV and XLSX DataFrame fromCSV: 'path/to/your/file.csv'.
DataFrame fromXLSX: 'path/to/your/file.xlsx'." You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Hello!
-- There is a missing dependency on the Tabular package. I have created an issue for it: https://github.com/PolyMathOrg/DataFrame/issues/28 As a temporary solution, you can load Tabular from Catalog Browser. Best regards, Oleks You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Hi Oleks, Thank you very much for your reply. I'll try to load Tabular from Catalog Browser.2018-01-08 12:09 GMT-03:00 Oleksandr Zaytsev <[hidden email]>:
You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
The Tabular package has been had as a dependency now : https://github.com/ On Mon, Jan 8, 2018 at 11:16 PM, Francisco Lizarralde <[hidden email]> wrote:
-- Serge Stinckwich UMI UMMISCO 209 (IRD/UPMC/UY1)
You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by Oleksandr Zaitsev
Hi Oleks, I wrote this method because I needed to load all worksheets present in a fileDATAFrame >> allWorksheetsFromXLSX: pathToFile | file workbook sheets | file := FileStream readOnlyFileNamed: pathToFile. workbook := XLSXImporter import: file. sheets := (workbook worksheets) collect: [ :sheet | self fromXLSXworksheet: sheet ]. ^ sheets.
2018-01-08 12:09 GMT-03:00 Oleksandr Zaytsev <[hidden email]>:
You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Free forum by Nabble | Edit this page |