11/**
22* @license
3- * Copyright 2021, JsData. All rights reserved.
3+ * Copyright 2022 JsData. All rights reserved.
44*
55* This source code is licensed under the MIT license found in the
66* LICENSE file in the root directory of this source tree.
@@ -3151,7 +3151,7 @@ export default class DataFrame extends NDframe implements DataFrameInterface {
31513151 }
31523152
31533153 /**
3154- * Exposes functions for creating charts from a DataFrame or Series .
3154+ * Exposes functions for creating charts from a DataFrame.
31553155 * Charts are created using the Plotly.js library, so all Plotly's configuration parameters are available.
31563156 * @param divId name of the HTML Div to render the chart in.
31573157 */
@@ -3166,7 +3166,7 @@ export default class DataFrame extends NDframe implements DataFrameInterface {
31663166 }
31673167
31683168 /**
3169- * Converts a DataFrame or Series to CSV.
3169+ * Converts a DataFrame to CSV.
31703170 * @param options Configuration object. Supports the following options:
31713171 * - `filePath`: Local file path to write the CSV file. If not specified, the CSV will be returned as a string. Option is only available in NodeJS.
31723172 * - `fileName`: Name of the CSV file. Defaults to `data.csv`. Option is only available in Browser.
@@ -3229,7 +3229,7 @@ export default class DataFrame extends NDframe implements DataFrameInterface {
32293229 }
32303230
32313231 /**
3232- * Converts a DataFrame or Series to JSON.
3232+ * Converts a DataFrame to JSON.
32333233 * @param options Configuration object. Supported options:
32343234 * - `filePath`: The file path to write the JSON to. If not specified, the JSON object is returned. Option is only available in NodeJS.
32353235 * - `fileName`: The name of the JSON file. Defaults to `data.json`. Option is only available in Browser.
@@ -3283,7 +3283,7 @@ export default class DataFrame extends NDframe implements DataFrameInterface {
32833283
32843284
32853285 /**
3286- * Converts a DataFrame or Series to Excel Sheet .
3286+ * Converts a DataFrame to Excel file format .
32873287 * @param options Configuration object. Supported options:
32883288 * - `sheetName`: The sheet name to be written to. Defaults to `'Sheet1'`.
32893289 * - `filePath`: The filePath to be written to. Defaults to `'./output.xlsx'`. Option is only available in NodeJs
0 commit comments