24 lines
434 B
Python
24 lines
434 B
Python
# flake8: noqa:F401
|
|
|
|
from pandas.core.reshape.concat import concat
|
|
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.reshape import get_dummies
|
|
from pandas.core.reshape.tile import (
|
|
cut,
|
|
qcut,
|
|
)
|