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
is there a reason it was deprecated? i need to filter my DF to remove certain values like so:
const filtered = this.datapoints.query({
column: "ModelName",
is: "==",
to: "model"
}).query({
column: "Timestamp",
is: ">=",
to: start
}).query({
column: "Timestamp",
is: "<=",
to: end
})
was this logic deprecated because it is inefficient? im not sure how to achieve this with the updated logic in query.
any help or clarification would be appreciated!
The text was updated successfully, but these errors were encountered:
i see querying by logical operators has been deprecated:
https://danfo.jsdata.org/api-reference/dataframe/danfo.dataframe.query#query-a-dataframe-using-logical-operators
is there a reason it was deprecated? i need to filter my DF to remove certain values like so:
was this logic deprecated because it is inefficient? im not sure how to achieve this with the updated logic in query.
any help or clarification would be appreciated!
The text was updated successfully, but these errors were encountered: