* Converts a DataFrame or Series to Excel. * @deprecated Use `toExcel` function directly instead. * @example * ``` * import * as dfd from "danfojs" * const df = new dfd.DataFrame([[1, 2, 3], [4, 5, 6]]) * dfd.toExcel(df, { * filePath: "./data/sample.xlsx",
(options?: any)
| 498 | * ``` |
| 499 | */ |
| 500 | toExcel(options?: any): void { |
| 501 | throw new Error("Deprecated. Use `toExcel` function directly instead. e.g. `dfd.toExcel(df, {filePath: 'path/to/file.xlsx'})`") |
| 502 | } |
| 503 | |
| 504 | /** |
| 505 | * Pretty prints a DataFrame or Series to the console |
nothing calls this directly
no outgoing calls
no test coverage detected