diff --git a/Fixes #136 b/Fixes #136 new file mode 100644 index 00000000..d256466b --- /dev/null +++ b/Fixes #136 @@ -0,0 +1,12 @@ +import seaborn as sns +no module named as seaborn +/ +this error even after installing in conda install seaborn +can anybody fix this + +**TO solve this error** +You have to install seaborn on your device. If you are using it on Anconda and Google colab they have seaborn library by default. +If you are using on pip, kindly run the following command on your Command Prompt + +pip install seaborn +and press Enter. diff --git a/TypeError#214 b/TypeError#214 new file mode 100644 index 00000000..ff2bc71c --- /dev/null +++ b/TypeError#214 @@ -0,0 +1,14 @@ +numpy float.64 is a non-iterable so you can not directly unpack it as you do with the iterables like list or tuple. +However, you can get access it's value directly as- + +import numpy as np + +# Create a numpy.float64 object +my_float = np.float64(42.0) + +# Access its value +value = my_float.item() +print(value) # This will print: 42.0 + +numpy.float64 objects are typically used for numerical computations, and you rarely need to "unpack" them in the same way you would with iterable data structures. +Instead, you work with them directly as numeric values.