You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
Typings for filter and where functions are missing boolean option for condition. Using these functions as described in the documentation:
df.filter(row => row.get('column1') >= 3)
throws the following TS error:
Type 'boolean' is not assignable to type 'DataFrame | Record<string, any>'.ts(2322)
Function definitions need to be updated to:
where(condition: (row: any) => DataFrame | Record<string, any> | boolean): DataFrame;
filter(condition: (row: any) => DataFrame | Record<string, any> | boolean): DataFrame;
The text was updated successfully, but these errors were encountered: