File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 50
50
merge_ordered , merge_asof )
51
51
from pandas .tools .pivot import pivot_table , crosstab
52
52
53
- # deprecate tools.plotting, and directly imported scatter_matrix
53
+ # deprecate tools.plotting, and scatter_matrix on the top namespace
54
54
import pandas .tools .plotting
55
55
from pandas .plotting import plot_params
56
- from pandas .util .decorators import deprecate
57
- scatter_matrix = deprecate ('pandas.scatter_matrix' , pandas .plotting .scatter_matrix ,
58
- 'pandas.plotting.scatter_matrix' )
56
+ # do not import deprecate to top namespace
57
+ scatter_matrix = pandas .util .decorators .deprecate (
58
+ 'pandas.scatter_matrix' , pandas .plotting .scatter_matrix ,
59
+ 'pandas.plotting.scatter_matrix' )
59
60
60
61
from pandas .tools .tile import cut , qcut
61
62
from pandas .tools .util import to_numeric
You can’t perform that action at this time.
0 commit comments