1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
from __future__ import annotations
import operator
import warnings
from functools import reduce
from typing import TYPE_CHECKING, Literal, Sequence
import pandas as pd
from narwhals._compliant import CompliantThen, EagerNamespace, EagerWhen
from narwhals._expression_parsing import (
combine_alias_output_names,
combine_evaluate_output_names,
)
from narwhals._pandas_like.dataframe import PandasLikeDataFrame
from narwhals._pandas_like.expr import PandasLikeExpr
from narwhals._pandas_like.selectors import PandasSelectorNamespace
from narwhals._pandas_like.series import PandasLikeSeries
from narwhals._pandas_like.utils import align_series_full_broadcast
if TYPE_CHECKING:
from narwhals._pandas_like.typing import NDFrameT
from narwhals._utils import Implementation, Version
from narwhals.typing import IntoDType, NonNestedLiteral
VERTICAL: Literal[0] = 0
HORIZONTAL: Literal[1] = 1
class PandasLikeNamespace(
EagerNamespace[PandasLikeDataFrame, PandasLikeSeries, PandasLikeExpr, pd.DataFrame]
):
@property
def _dataframe(self) -> type[PandasLikeDataFrame]:
return PandasLikeDataFrame
@property
def _expr(self) -> type[PandasLikeExpr]:
return PandasLikeExpr
@property
def _series(self) -> type[PandasLikeSeries]:
return PandasLikeSeries
@property
def selectors(self) -> PandasSelectorNamespace:
return PandasSelectorNamespace.from_namespace(self)
# --- not in spec ---
def __init__(
self,
implementation: Implementation,
backend_version: tuple[int, ...],
version: Version,
) -> None:
self._implementation = implementation
self._backend_version = backend_version
self._version = version
def lit(self, value: NonNestedLiteral, dtype: IntoDType | None) -> PandasLikeExpr:
def _lit_pandas_series(df: PandasLikeDataFrame) -> PandasLikeSeries:
pandas_series = self._series.from_iterable(
data=[value],
name="literal",
index=df._native_frame.index[0:1],
context=self,
)
if dtype:
return pandas_series.cast(dtype)
return pandas_series
return PandasLikeExpr(
lambda df: [_lit_pandas_series(df)],
depth=0,
function_name="lit",
evaluate_output_names=lambda _df: ["literal"],
alias_output_names=None,
implementation=self._implementation,
backend_version=self._backend_version,
version=self._version,
)
def len(self) -> PandasLikeExpr:
return PandasLikeExpr(
lambda df: [
self._series.from_iterable(
[len(df._native_frame)], name="len", index=[0], context=self
)
],
depth=0,
function_name="len",
evaluate_output_names=lambda _df: ["len"],
alias_output_names=None,
implementation=self._implementation,
backend_version=self._backend_version,
version=self._version,
)
# --- horizontal ---
def sum_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
series = [s for _expr in exprs for s in _expr(df)]
series = align_series_full_broadcast(*series)
native_series = (s.fill_null(0, None, None) for s in series)
return [reduce(operator.add, native_series)]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="sum_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
def all_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
series = align_series_full_broadcast(
*(s for _expr in exprs for s in _expr(df))
)
return [reduce(operator.and_, series)]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="all_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
def any_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
series = align_series_full_broadcast(
*(s for _expr in exprs for s in _expr(df))
)
return [reduce(operator.or_, series)]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="any_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
def mean_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
expr_results = [s for _expr in exprs for s in _expr(df)]
series = align_series_full_broadcast(
*(s.fill_null(0, strategy=None, limit=None) for s in expr_results)
)
non_na = align_series_full_broadcast(*(1 - s.is_null() for s in expr_results))
return [reduce(operator.add, series) / reduce(operator.add, non_na)]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="mean_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
def min_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
series = [s for _expr in exprs for s in _expr(df)]
series = align_series_full_broadcast(*series)
return [
PandasLikeSeries(
self.concat(
(s.to_frame() for s in series), how="horizontal"
)._native_frame.min(axis=1),
implementation=self._implementation,
backend_version=self._backend_version,
version=self._version,
).alias(series[0].name)
]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="min_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
def max_horizontal(self, *exprs: PandasLikeExpr) -> PandasLikeExpr:
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
series = [s for _expr in exprs for s in _expr(df)]
series = align_series_full_broadcast(*series)
return [
PandasLikeSeries(
self.concat(
(s.to_frame() for s in series), how="horizontal"
)._native_frame.max(axis=1),
implementation=self._implementation,
backend_version=self._backend_version,
version=self._version,
).alias(series[0].name)
]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="max_horizontal",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
@property
def _concat(self): # type: ignore[no-untyped-def] # noqa: ANN202
"""Return the **native** equivalent of `pd.concat`."""
# NOTE: Leave un-annotated to allow `@overload` matching via inference.
if TYPE_CHECKING:
import pandas as pd
return pd.concat
return self._implementation.to_native_namespace().concat
def _concat_diagonal(self, dfs: Sequence[pd.DataFrame], /) -> pd.DataFrame:
if self._implementation.is_pandas() and self._backend_version < (3,):
if self._backend_version < (1,):
return self._concat(dfs, axis=VERTICAL, copy=False, sort=False)
return self._concat(dfs, axis=VERTICAL, copy=False)
return self._concat(dfs, axis=VERTICAL)
def _concat_horizontal(self, dfs: Sequence[NDFrameT], /) -> pd.DataFrame:
if self._implementation.is_cudf():
with warnings.catch_warnings():
warnings.filterwarnings(
"ignore",
message="The behavior of array concatenation with empty entries is deprecated",
category=FutureWarning,
)
return self._concat(dfs, axis=HORIZONTAL)
elif self._implementation.is_pandas() and self._backend_version < (3,):
return self._concat(dfs, axis=HORIZONTAL, copy=False)
return self._concat(dfs, axis=HORIZONTAL)
def _concat_vertical(self, dfs: Sequence[pd.DataFrame], /) -> pd.DataFrame:
cols_0 = dfs[0].columns
for i, df in enumerate(dfs[1:], start=1):
cols_current = df.columns
if not (
(len(cols_current) == len(cols_0)) and (cols_current == cols_0).all()
):
msg = (
"unable to vstack, column names don't match:\n"
f" - dataframe 0: {cols_0.to_list()}\n"
f" - dataframe {i}: {cols_current.to_list()}\n"
)
raise TypeError(msg)
if self._implementation.is_pandas() and self._backend_version < (3,):
return self._concat(dfs, axis=VERTICAL, copy=False)
return self._concat(dfs, axis=VERTICAL)
def when(self, predicate: PandasLikeExpr) -> PandasWhen:
return PandasWhen.from_expr(predicate, context=self)
def concat_str(
self, *exprs: PandasLikeExpr, separator: str, ignore_nulls: bool
) -> PandasLikeExpr:
string = self._version.dtypes.String()
def func(df: PandasLikeDataFrame) -> list[PandasLikeSeries]:
expr_results = [s for _expr in exprs for s in _expr(df)]
series = align_series_full_broadcast(*(s.cast(string) for s in expr_results))
null_mask = align_series_full_broadcast(*(s.is_null() for s in expr_results))
if not ignore_nulls:
null_mask_result = reduce(operator.or_, null_mask)
result = reduce(lambda x, y: x + separator + y, series).zip_with(
~null_mask_result, None
)
else:
init_value, *values = [
s.zip_with(~nm, "") for s, nm in zip(series, null_mask)
]
sep_array = init_value.from_iterable(
data=[separator] * len(init_value),
name="sep",
index=init_value.native.index,
context=self,
)
separators = (sep_array.zip_with(~nm, "") for nm in null_mask[:-1])
result = reduce(
operator.add, (s + v for s, v in zip(separators, values)), init_value
)
return [result]
return self._expr._from_callable(
func=func,
depth=max(x._depth for x in exprs) + 1,
function_name="concat_str",
evaluate_output_names=combine_evaluate_output_names(*exprs),
alias_output_names=combine_alias_output_names(*exprs),
context=self,
)
class PandasWhen(EagerWhen[PandasLikeDataFrame, PandasLikeSeries, PandasLikeExpr]):
@property
def _then(self) -> type[PandasThen]:
return PandasThen
def _if_then_else(
self,
when: PandasLikeSeries,
then: PandasLikeSeries,
otherwise: PandasLikeSeries | None,
/,
) -> PandasLikeSeries:
if otherwise is None:
when, then = align_series_full_broadcast(when, then)
res_native = then.native.where(when.native)
else:
when, then, otherwise = align_series_full_broadcast(when, then, otherwise)
res_native = then.native.where(when.native, otherwise.native)
return then._with_native(res_native)
class PandasThen(
CompliantThen[PandasLikeDataFrame, PandasLikeSeries, PandasLikeExpr], PandasLikeExpr
): ...
|