@@ -2532,7 +2532,8 @@ def line(self, **kwds):
2532
2532
Parameters
2533
2533
----------
2534
2534
`**kwds` : optional
2535
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2535
+ Additional keyword arguments are documented in
2536
+ :py:meth:`pandas.Series.plot`.
2536
2537
2537
2538
Returns
2538
2539
-------
@@ -2556,7 +2557,8 @@ def bar(self, **kwds):
2556
2557
Parameters
2557
2558
----------
2558
2559
`**kwds` : optional
2559
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2560
+ Additional keyword arguments are documented in
2561
+ :py:meth:`pandas.Series.plot`.
2560
2562
2561
2563
Returns
2562
2564
-------
@@ -2571,7 +2573,8 @@ def barh(self, **kwds):
2571
2573
Parameters
2572
2574
----------
2573
2575
`**kwds` : optional
2574
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2576
+ Additional keyword arguments are documented in
2577
+ :py:meth:`pandas.Series.plot`.
2575
2578
2576
2579
Returns
2577
2580
-------
@@ -2586,7 +2589,8 @@ def box(self, **kwds):
2586
2589
Parameters
2587
2590
----------
2588
2591
`**kwds` : optional
2589
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2592
+ Additional keyword arguments are documented in
2593
+ :py:meth:`pandas.Series.plot`.
2590
2594
2591
2595
Returns
2592
2596
-------
@@ -2603,7 +2607,8 @@ def hist(self, bins=10, **kwds):
2603
2607
bins: integer, default 10
2604
2608
Number of histogram bins to be used
2605
2609
`**kwds` : optional
2606
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2610
+ Additional keyword arguments are documented in
2611
+ :py:meth:`pandas.Series.plot`.
2607
2612
2608
2613
Returns
2609
2614
-------
@@ -2633,7 +2638,8 @@ def kde(self, bw_method=None, ind=None, **kwds):
2633
2638
kde is evaluated at the points passed. If `ind` is an integer,
2634
2639
`ind` number of equally spaced points are used.
2635
2640
kwds : optional
2636
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2641
+ Additional keyword arguments are documented in
2642
+ :py:meth:`pandas.Series.plot`.
2637
2643
2638
2644
Returns
2639
2645
-------
@@ -2692,7 +2698,8 @@ def area(self, **kwds):
2692
2698
Parameters
2693
2699
----------
2694
2700
`**kwds` : optional
2695
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2701
+ Additional keyword arguments are documented in
2702
+ :py:meth:`pandas.Series.plot`.
2696
2703
2697
2704
Returns
2698
2705
-------
@@ -2707,7 +2714,8 @@ def pie(self, **kwds):
2707
2714
Parameters
2708
2715
----------
2709
2716
`**kwds` : optional
2710
- Keyword arguments to pass on to :py:meth:`pandas.Series.plot`.
2717
+ Additional keyword arguments are documented in
2718
+ :py:meth:`pandas.Series.plot`.
2711
2719
2712
2720
Returns
2713
2721
-------
@@ -2758,7 +2766,8 @@ def line(self, x=None, y=None, **kwds):
2758
2766
x, y : label or position, optional
2759
2767
Coordinates for each point.
2760
2768
`**kwds` : optional
2761
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2769
+ Additional keyword arguments are documented in
2770
+ :py:meth:`pandas.DataFrame.plot`.
2762
2771
2763
2772
Returns
2764
2773
-------
@@ -2775,7 +2784,8 @@ def bar(self, x=None, y=None, **kwds):
2775
2784
x, y : label or position, optional
2776
2785
Coordinates for each point.
2777
2786
`**kwds` : optional
2778
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2787
+ Additional keyword arguments are documented in
2788
+ :py:meth:`pandas.DataFrame.plot`.
2779
2789
2780
2790
Returns
2781
2791
-------
@@ -2792,7 +2802,8 @@ def barh(self, x=None, y=None, **kwds):
2792
2802
x, y : label or position, optional
2793
2803
Coordinates for each point.
2794
2804
`**kwds` : optional
2795
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2805
+ Additional keyword arguments are documented in
2806
+ :py:meth:`pandas.DataFrame.plot`.
2796
2807
2797
2808
Returns
2798
2809
-------
@@ -2809,7 +2820,8 @@ def box(self, by=None, **kwds):
2809
2820
by : string or sequence
2810
2821
Column in the DataFrame to group by.
2811
2822
`**kwds` : optional
2812
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2823
+ Additional keyword arguments are documented in
2824
+ :py:meth:`pandas.DataFrame.plot`.
2813
2825
2814
2826
Returns
2815
2827
-------
@@ -2828,7 +2840,8 @@ def hist(self, by=None, bins=10, **kwds):
2828
2840
bins: integer, default 10
2829
2841
Number of histogram bins to be used
2830
2842
`**kwds` : optional
2831
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2843
+ Additional keyword arguments are documented in
2844
+ :py:meth:`pandas.DataFrame.plot`.
2832
2845
2833
2846
Returns
2834
2847
-------
@@ -2853,7 +2866,8 @@ def kde(self, bw_method=None, ind=None, **kwds):
2853
2866
points passed. If `ind` is an integer, `ind` number of equally
2854
2867
spaced points are used.
2855
2868
`**kwds` : optional
2856
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2869
+ Additional keyword arguments are documented in
2870
+ :py:meth:`pandas.DataFrame.plot`.
2857
2871
2858
2872
Returns
2859
2873
-------
@@ -2872,7 +2886,8 @@ def area(self, x=None, y=None, **kwds):
2872
2886
x, y : label or position, optional
2873
2887
Coordinates for each point.
2874
2888
`**kwds` : optional
2875
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2889
+ Additional keyword arguments are documented in
2890
+ :py:meth:`pandas.DataFrame.plot`.
2876
2891
2877
2892
Returns
2878
2893
-------
@@ -2889,7 +2904,8 @@ def pie(self, y=None, **kwds):
2889
2904
y : label or position, optional
2890
2905
Column to plot.
2891
2906
`**kwds` : optional
2892
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2907
+ Additional keyword arguments are documented in
2908
+ :py:meth:`pandas.DataFrame.plot`.
2893
2909
2894
2910
Returns
2895
2911
-------
@@ -2910,7 +2926,8 @@ def scatter(self, x, y, s=None, c=None, **kwds):
2910
2926
c : label or position, optional
2911
2927
Color of each point.
2912
2928
`**kwds` : optional
2913
- Keyword arguments to pass on to :py:meth:`pandas.DataFrame.plot`.
2929
+ Additional keyword arguments are documented in
2930
+ :py:meth:`pandas.DataFrame.plot`.
2914
2931
2915
2932
Returns
2916
2933
-------
0 commit comments