File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -670,6 +670,13 @@ def kurt(self, numeric_only: bool = False):
670
670
kwargs_numeric_only ,
671
671
create_section_header ("Returns" ),
672
672
template_returns ,
673
+ create_section_header ("See Also" ),
674
+ dedent (
675
+ """
676
+ GroupBy.first : Similar method for GroupBy objects
677
+ Expanding.last : Method to get the last element in each window
678
+ """
679
+ ),
673
680
create_section_header ("Examples" ),
674
681
dedent (
675
682
"""
@@ -699,6 +706,13 @@ def first(self, numeric_only: bool = False):
699
706
kwargs_numeric_only ,
700
707
create_section_header ("Returns" ),
701
708
template_returns ,
709
+ create_section_header ("See Also" ),
710
+ dedent (
711
+ """
712
+ GroupBy.last : Similar method for GroupBy objects
713
+ Expanding.first : Method to get the first element in each window
714
+ """
715
+ ),
702
716
create_section_header ("Examples" ),
703
717
dedent (
704
718
"""
Original file line number Diff line number Diff line change @@ -2561,6 +2561,13 @@ def kurt(self, numeric_only: bool = False):
2561
2561
kwargs_numeric_only ,
2562
2562
create_section_header ("Returns" ),
2563
2563
template_returns ,
2564
+ create_section_header ("See Also" ),
2565
+ dedent (
2566
+ """
2567
+ GroupBy.first : Similar method for GroupBy objects
2568
+ Rolling.last : Method to get the last element in each window
2569
+ """
2570
+ ),
2564
2571
create_section_header ("Examples" ),
2565
2572
dedent (
2566
2573
"""
@@ -2590,6 +2597,13 @@ def first(self, numeric_only: bool = False):
2590
2597
kwargs_numeric_only ,
2591
2598
create_section_header ("Returns" ),
2592
2599
template_returns ,
2600
+ create_section_header ("See Also" ),
2601
+ dedent (
2602
+ """
2603
+ GroupBy.last : Similar method for GroupBy objects
2604
+ Rolling.first : Method to get the first element in each window
2605
+ """
2606
+ ),
2593
2607
create_section_header ("Examples" ),
2594
2608
dedent (
2595
2609
"""
You can’t perform that action at this time.
0 commit comments