-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Open
Labels
BugPDEP missing valuesIssues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprintIssues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprintReduction Operationssum, mean, min, max, etc.sum, mean, min, max, etc.
Description
df = pd.DataFrame(
{
"B": [1, None, 3],
"C": pd.array([1, None, 3], dtype="Int64"),
}
)
result = df.skew()
>>> result
B <NA>
C <NA>
dtype: Float64
>>> df[["B"]].skew()
B NaN
dtype: float64
Based on test_mixed_reductions. The presence of column "C" shouldn't affect the result we get for column "B".
Metadata
Metadata
Assignees
Labels
BugPDEP missing valuesIssues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprintIssues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprintReduction Operationssum, mean, min, max, etc.sum, mean, min, max, etc.