api.py 680 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. from pandas.core.reshape.concat import concat
  2. from pandas.core.reshape.encoding import (
  3. from_dummies,
  4. get_dummies,
  5. )
  6. from pandas.core.reshape.melt import (
  7. lreshape,
  8. melt,
  9. wide_to_long,
  10. )
  11. from pandas.core.reshape.merge import (
  12. merge,
  13. merge_asof,
  14. merge_ordered,
  15. )
  16. from pandas.core.reshape.pivot import (
  17. crosstab,
  18. pivot,
  19. pivot_table,
  20. )
  21. from pandas.core.reshape.tile import (
  22. cut,
  23. qcut,
  24. )
  25. __all__ = [
  26. "concat",
  27. "crosstab",
  28. "cut",
  29. "from_dummies",
  30. "get_dummies",
  31. "lreshape",
  32. "melt",
  33. "merge",
  34. "merge_asof",
  35. "merge_ordered",
  36. "pivot",
  37. "pivot_table",
  38. "qcut",
  39. "wide_to_long",
  40. ]