python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Polars DataFrame memory size in Python
Was wondering about the size of particular polars DataFrames.
I tried with:
from sys import getsizeof
getsizeof(df)
Out[17]: 48
getsizeof(df.to_pandas())
Out[18]: 1602923950
It appears all polars df...
fvg
Votes: 0
Answers: 2
Pandas: Rolling Mean and ignore NaN
How does you tell pandas to ignore NaN values when calculating a mean? With min periods, pandas will return NaN for a number of min_periods when it encounters a single NaN.
Example:
pd.DataFrame({ 'x'...
Test
Votes: 0
Answers: 1
How to create a weighted sum of some columns in a Polars DataFrame?
I'm looking for an idiomatic way to calculate the weighted sum of a subset of the columns in a Polars DataFrame and add it to the DataFrame as new column. So let's say I want to multiply columns p1-p3...
Tikkanz
Votes: 0
Answers: 2
Convert Pandas pivot_table function into Polars pivot Function
I'm trying to convert some python pandas into polars. I'm stuck trying to convert pandas pivot_table function into polars. The following is the working pandas code. I can't seem to get the same behavi...

Butter_
Votes: 0
Answers: 1