@@ -110,20 +110,20 @@ class PeriodIndex(DatetimeIndexOpsMixin, Int64Index):
110110
111111 Parameters
112112 ----------
113- data : array-like (1-dimensional), optional
113+ data : array-like (1-dimensional), optional
114114 Optional period-like data to construct index with
115115 dtype : NumPy dtype (default: i8)
116- copy : bool
116+ copy : bool
117117 Make a copy of input ndarray
118118 freq : string or period object, optional
119119 One of pandas period strings or corresponding objects
120120 start : starting value, period-like, optional
121121 If data is None, used as the start point in generating regular
122122 period data.
123- periods : int, optional, > 0
123+ periods : int, optional, > 0
124124 Number of periods to generate, if generating index. Takes precedence
125125 over end argument
126- end : end value, period-like, optional
126+ end : end value, period-like, optional
127127 If periods is none, generated index will extend to first conforming
128128 period on or just past end argument
129129 year : int, array, or Series, default None
@@ -501,7 +501,6 @@ def shift(self, n):
501501 ----------
502502 n : int
503503 Periods to shift by
504- freq : freq string
505504
506505 Returns
507506 -------
@@ -970,8 +969,8 @@ def period_range(start=None, end=None, periods=None, freq='D', name=None):
970969
971970 Parameters
972971 ----------
973- start :
974- end :
972+ start : starting value, period-like, optional
973+ end : ending value, period-like, optional
975974 periods : int, default None
976975 Number of periods in the index
977976 freq : str/DateOffset, default 'D'
0 commit comments