Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pandas/core/reshape/api.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1from pandas.core.reshape.concat import concat 

2from pandas.core.reshape.encoding import ( 

3 from_dummies, 

4 get_dummies, 

5) 

6from pandas.core.reshape.melt import ( 

7 lreshape, 

8 melt, 

9 wide_to_long, 

10) 

11from pandas.core.reshape.merge import ( 

12 merge, 

13 merge_asof, 

14 merge_ordered, 

15) 

16from pandas.core.reshape.pivot import ( 

17 crosstab, 

18 pivot, 

19 pivot_table, 

20) 

21from pandas.core.reshape.tile import ( 

22 cut, 

23 qcut, 

24) 

25 

26__all__ = [ 

27 "concat", 

28 "crosstab", 

29 "cut", 

30 "from_dummies", 

31 "get_dummies", 

32 "lreshape", 

33 "melt", 

34 "merge", 

35 "merge_asof", 

36 "merge_ordered", 

37 "pivot", 

38 "pivot_table", 

39 "qcut", 

40 "wide_to_long", 

41]