File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -567,9 +567,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
567
567
pandas.plotting.andrews_curves \
568
568
pandas.plotting.autocorrelation_plot \
569
569
pandas.plotting.lag_plot \
570
- pandas.plotting.parallel_coordinates \
571
- pandas.plotting.radviz \
572
- pandas.tseries.frequencies.to_offset
570
+ pandas.plotting.parallel_coordinates
573
571
RET=$(( $RET + $? )) ; echo $MSG " DONE"
574
572
575
573
fi
Original file line number Diff line number Diff line change @@ -4109,6 +4109,7 @@ cpdef to_offset(freq):
4109
4109
4110
4110
Examples
4111
4111
--------
4112
+ >>> from pandas.tseries.frequencies import to_offset
4112
4113
>>> to_offset("5min")
4113
4114
<5 * Minutes>
4114
4115
@@ -4124,7 +4125,7 @@ cpdef to_offset(freq):
4124
4125
>>> to_offset(pd.Timedelta(days=1))
4125
4126
<Day>
4126
4127
4127
- >>> to_offset(Hour())
4128
+ >>> to_offset(pd.offsets. Hour())
4128
4129
<Hour>
4129
4130
"""
4130
4131
if freq is None :
Original file line number Diff line number Diff line change @@ -246,8 +246,7 @@ def radviz(
246
246
... ]
247
247
... }
248
248
... )
249
- >>> pd.plotting.radviz(df, 'Category')
250
- <AxesSubplot: xlabel='y(t)', ylabel='y(t + 1)'>
249
+ >>> pd.plotting.radviz(df, 'Category') # doctest: +SKIP
251
250
"""
252
251
plot_backend = _get_plot_backend ("matplotlib" )
253
252
return plot_backend .radviz (
You can’t perform that action at this time.
0 commit comments