From 41613457003169fe05c98d6861644cfe708c6112 Mon Sep 17 00:00:00 2001 From: Ken Geis Date: Sun, 17 Jul 2022 23:52:03 -0700 Subject: [PATCH] Update frame.ts fix copy/paste error in df.apply documentation --- src/danfojs-base/core/frame.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/danfojs-base/core/frame.ts b/src/danfojs-base/core/frame.ts index 5c752569..c0674922 100644 --- a/src/danfojs-base/core/frame.ts +++ b/src/danfojs-base/core/frame.ts @@ -2523,7 +2523,7 @@ export default class DataFrame extends NDframe implements DataFrameInterface { * Objects passed to the function are Series values whose * index is either the DataFrame’s index (axis=0) or the DataFrame’s columns (axis=1) * @param callable Function to apply to each column or row. - * @param options.axis 0 or 1. If 0, compute the power column-wise, if 1, row-wise + * @param options.axis 0 or 1. If 0, apply the function column-wise, if 1, row-wise * * @example * ```