Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

TurbSim wind file plotting #36

Closed
kpramng opened this issue Jul 29, 2022 · 15 comments
Closed

TurbSim wind file plotting #36

kpramng opened this issue Jul 29, 2022 · 15 comments
Labels
documentation Improvements or additions to documentation question Further information is requested

Comments

@kpramng
Copy link

kpramng commented Jul 29, 2022

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
Copy link
Collaborator

ebranlard commented Jul 29, 2022

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.

@ebranlard ebranlard added documentation Improvements or additions to documentation question Further information is requested labels Jul 29, 2022
@kpramng
Copy link
Author

kpramng commented Aug 5, 2022

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
Copy link
Collaborator

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
Copy link
Author

kpramng commented Sep 6, 2022

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
Copy link
Collaborator

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
Copy link
Author

kpramng commented Sep 6, 2022

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:https://github.com/OpenFAST/python-toolbox
cd python-toolbox
python -m pip install -e .
pytest

@ebranlard
Copy link
Collaborator

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:https://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
Copy link
Author

kpramng commented Sep 6, 2022

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:https://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:https://github.com/OpenFAST/python-toolbox -b dev
'git' is not recognized as an internal or external command,
operable program or batch file.

@ebranlard
Copy link
Collaborator

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
Copy link
Author

kpramng commented Sep 13, 2022

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:https://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
Copy link
Collaborator

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
Copy link
Author

kpramng commented Sep 13, 2022

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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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\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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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):

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

@ebranlard
Copy link
Collaborator

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
Copy link
Author

kpramng commented Sep 22, 2022

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
Copy link
Collaborator

ebranlard commented Oct 10, 2022

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Improvements or additions to documentation question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants