MCPcopy Create free account
hub / github.com/javascriptdata/danfojs / toExcel

Method toExcel

src/danfojs-base/core/generic.ts:500–502  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected