Description
Location of the imports
pandas/pandas/tests/plotting/test_hist_method.py
Lines 3 to 4 in 8a25b23
Imports problem
All numpy-related imports are only about numpy.random
including randint
, choice
, normal
, etc
Part of numpy.random-related imports use aliases
Suggested fix for imports
eg: import numpy as np
&& np.ranom.randn
--> from numpy.random import randn
from numpy.random import randn
--> import numpy as np
&& np.ranom.randn