8000 Chore/add default support for datetime by risenW · Pull Request #511 · javascriptdata/danfojs · GitHub
[go: up one dir, main page]

Skip to content

Chore/add default support for datetime #511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 12, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update frame.ts
fix copy/paste error in df.apply documentation
  • Loading branch information
kgeis authored Jul 18, 2022
commit 41613457003169fe05c98d6861644cfe708c6112
2 changes: 1 addition & 1 deletion src/danfojs-base/core/frame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
* ```
Expand Down
0