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
| from pandas.core.reshape.concat import concat
| from pandas.core.reshape.encoding import (
| from_dummies,
| get_dummies,
| )
| from pandas.core.reshape.melt import (
| lreshape,
| melt,
| wide_to_long,
| )
| from pandas.core.reshape.merge import (
| merge,
| merge_asof,
| merge_ordered,
| )
| from pandas.core.reshape.pivot import (
| crosstab,
| pivot,
| pivot_table,
| )
| from pandas.core.reshape.tile import (
| cut,
| qcut,
| )
|
| __all__ = [
| "concat",
| "crosstab",
| "cut",
| "from_dummies",
| "get_dummies",
| "lreshape",
| "melt",
| "merge",
| "merge_asof",
| "merge_ordered",
| "pivot",
| "pivot_table",
| "qcut",
| "wide_to_long",
| ]
|
|