We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4bbb6 commit 1c1efe1Copy full SHA for 1c1efe1
pandas/__init__.py
@@ -47,12 +47,13 @@
47
merge_ordered, merge_asof)
48
from pandas.tools.pivot import pivot_table, crosstab
49
50
-# deprecate tools.plotting, and directly imported scatter_matrix
+# deprecate tools.plotting, and scatter_matrix on the top namespace
51
import pandas.tools.plotting
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')
+# do not import deprecate to top namespace
+scatter_matrix = pandas.util.decorators.deprecate(
+ 'pandas.scatter_matrix', pandas.plotting.scatter_matrix,
56
+ 'pandas.plotting.scatter_matrix')
57
58
from pandas.tools.tile import cut, qcut
59
from pandas.tools.util import to_numeric
0 commit comments