OpenFAST / python-toolbox

Suite of Python tools to work with OpenFAST
76 stars 63 forks source link

TurbSim wind file plotting #36

Closed kpramng closed 1 year ago

kpramng commented 2 years ago

Hi,

Is there any python based script that can be used to plot the time series of the wind file generated by running TurbSim.

Best, Karthik

ebranlard commented 2 years ago

Hi @kpramng

I've added an example here: https://github.com/OpenFAST/python-toolbox/blob/dev/pyFAST/input_output/examples/Example_TurbSimBox.py

You'll need to use the dev branch for this example to work fully.

kpramng commented 2 years ago

Thanks a lot @ebranlard May I know if there are a set of Python based tool for Aeroelastic loads pre and post processing. For example, like preparing to run NTM simulations from cut in to cut-out, as well as to run extreme DLC's and for postprocessing in terms of getting the extreme loads from all DLC's as well as DEL and Rainflow counting etc.

BR

ebranlard commented 2 years ago

Hi @kpramng,

The python-toolbox doesn't have features to perform full DLC so far. It does contains low-level functions that can help you to implement that, but it will require a programming effort on your side.

The WEIS framework contains tools to achieve what you are after: https://github.com/WISDEM/WEIS

kpramng commented 2 years ago

Hi @kpramng

I've added an example here: https://github.com/OpenFAST/python-toolbox/blob/dev/pyFAST/input_output/examples/Example_TurbSimBox.py

You'll need to use the dev branch for this example to work fully.

Hi @ebranlard When I tried to run the script, I got the following error: " No module named 'pyFAST'" I tried to get it from Google, but couldn't find the same module.

ebranlard commented 2 years ago

Hi @kpramng You need to first install the python-toolbox, using the instruction mentioned in the README of the repository: here

In particular: python -m pip install -e .

kpramng commented 2 years ago

Hi @kpramng You need to first install the python-toolbox, using the instruction mentioned in the README of the repository: here

In particular: python -m pip install -e .

Thanks for the quick reply @ebranlard Pardon me for my naive question. Should I paste the below lines in Anaconda command prompt and run it git clone http://github.com/OpenFAST/python-toolbox cd python-toolbox python -m pip install -e . pytest

ebranlard commented 2 years ago

Yes, you can do that, it will download and install pyFAST in your conda environment. just replace the clone line with the following to download the dev branch:

git clone http://github.com/OpenFAST/python-toolbox -b dev

(If you have already cloned the repository, go to the python-toolbox folder, and type git checkout dev )

kpramng commented 2 years ago

Yes, you can do that, it will download and install pyFAST in your conda environment. just replace the clone line with the following to download the dev branch:

git clone http://github.com/OpenFAST/python-toolbox -b dev

(If you have already cloned the repository, go to the python-toolbox folder, and type git checkout dev )

Again, excuse me for the basic query. I am abit new to git. I get the below error while running the command in Anaconda command prompt

(base) C:>git clone http://github.com/OpenFAST/python-toolbox -b dev 'git' is not recognized as an internal or external command, operable program or batch file.

ebranlard commented 2 years ago

This is indeed a conda question, I'm not using conda myself, but I believe that conda install git would install the git command.

kpramng commented 2 years ago

Hi @ebranlard

I was getting the below message while I was trying to install the Python tool box when I ran the last line of the below command

git clone http://github.com/OpenFAST/python-toolbox cd python-toolbox python -m pip install -e . pytest

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

-- Docs: https://docs.pytest.org/en/latest/warnings.html ============== 2 failed, 44 passed, 292 warnings in 7.90 seconds ==============

ebranlard commented 2 years ago

Hi @kpramng

It seems you reported only the end of the message in your post, can you post the full output of pytest (the relevant parts are the lines after ===== FAILURES ====, but if you dump everything here, that will help as well. Thanks

kpramng commented 2 years ago

Hi @ebranlard

Thanks a lot for getting back. I am pasting the entire output here.

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\sparse\sputils.py:16: DeprecationWarning: np.typeDict is a deprecated alias for np.sctypeDict. supported_dtypes = [np.typeDict[x] for x in supported_dtypes] C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\special\orthogonal.py:81: DeprecationWarning: np.int is a deprecated alias for the builtin int. To silence this warning, use int by itself. Doing this will not modify any behavior and is safe. When replacing np.int, you may wish to use e.g. np.int64 or np.int32 to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations from numpy import (exp, inf, pi, sqrt, floor, sin, cos, around, int, C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\special\orthogonal.py:81: DeprecationWarning: np.int is a deprecated alias for the builtin int. To silence this warning, use int by itself. Doing this will not modify any behavior and is safe. When replacing np.int, you may wish to use e.g. np.int64 or np.int32 to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations from numpy import (exp, inf, pi, sqrt, floor, sin, cos, around, int,

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\matplotlib\cbook__init.py:2349: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if isinstance(obj, collections.Iterator): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\matplotlib\cbook\init__.py:2366: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working return list(data) if isinstance(data, collections.MappingView) else data

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.bool_ here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_booldtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning: np.bool is a deprecated alias for the builtin bool. To silence this warning, use bool by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.boolhere. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data): C:\Users\prakakar\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\indexes\base.py:378: DeprecationWarning:np.boolis a deprecated alias for the builtinbool. To silence this warning, useboolby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations elif issubclass(data.dtype.type, np.bool) or is_bool_dtype(data):

-- Docs: https://docs.pytest.org/en/latest/warnings.html ============== 2 failed, 44 passed, 292 warnings in 7.90 seconds ==============

ebranlard commented 2 years ago

Thanks. Well, I can't really figure out what test is failing. It's probably fine, most of the tests seem to pass, so you can likely use pyFAST without too much issue.

kpramng commented 2 years ago

Hi @kpramng

It seems you reported only the end of the message in your post, can you post the full output of pytest (the relevant parts are the lines after ===== FAILURES ====, but if you dump everything here, that will help as well. Thanks

@ebranlard Thanks a lot for the help. It's running. I need a help, can you help me understand what the 2 sets of plot mean in the attached diagram as well as the variables in the excel output generated (highlighted in yellow, I couldn't understand what 64 & 118 meant).

image

ebranlard commented 2 years ago

Hi @kpramng These plots are the 3 components of velocity, at y=0, z=84.3 n your turbulence box. The two sets are expected to be the same, they just illustrate two ways to access the data in the box.

In the csv file, the value after y and z are the locations along y and z in the box of the points where the time series is extracted at.

Emmanuel