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 47
47
merge_ordered , merge_asof )
48
48
from pandas .tools .pivot import pivot_table , crosstab
49
49
50
- # deprecate tools.plotting, and directly imported scatter_matrix
50
+ # deprecate tools.plotting, and scatter_matrix on the top namespace
51
51
import pandas .tools .plotting
52
52
from pandas .plotting import plot_params
53
- from pandas .util .decorators import deprecate
54
- scatter_matrix = deprecate ('pandas.scatter_matrix' , pandas .plotting .scatter_matrix ,
55
- 'pandas.plotting.scatter_matrix' )
53
+ # do not import deprecate to top namespace
54
+ scatter_matrix = pandas .util .decorators .deprecate (
55
+ 'pandas.scatter_matrix' , pandas .plotting .scatter_matrix ,
56
+ 'pandas.plotting.scatter_matrix' )
56
57
57
58
from pandas .tools .tile import cut , qcut
58
59
from pandas .tools .util import to_numeric
You can’t perform that action at this time.
0 commit comments