vaex icon indicating copy to clipboard operation
vaex copied to clipboard

[FEATURE-REQUEST] looking for vaex equivalent of pandas_df.corr(min_periods=100)

Open Rajendra-mckesson opened this issue 7 months ago • 0 comments

Description Vaex correlation calculation completely ignores the rows or column with missing values; which is not desired behavior with real world data; Pandas have such functionality pandas_df.corr(min_periods=100), where min_periods defines minimum number of valid (Not NaN) observations required per pair of columns to have a valid correlation value.

Is your feature request related to a problem? Please describe.

Additional context pandas equivalent: pandas_df.corr(min_periods=100)

Rajendra-mckesson avatar Nov 14 '23 20:11 Rajendra-mckesson