rraadd88
rraadd88
For me, same command worked in Ubuntu 14.04 and python 3.6. Although it said: `Ignoring wsgiref: markers 'python_version < "3.0"' don't match your environment` I'm not sure if I am...
UPDATE: did ran into problems. The jupyter notebooks are written in python 2.7. (Should have been mentioned clearly in the README). I have now made a conda environment file to...
Just need to switch between `/lab?` and `/tree?` e.g. `https://localhost:8888/lab?` and `https://localhost:8888/tree?`.
Changing the executable path of jupyter (in the `kernel.json`) worked in my case. For details see https://stackoverflow.com/a/57274684/3521099 .
Changing the executable path of jupyter (in the `kernel.json`) worked in my case. For details see https://stackoverflow.com/a/57274684/3521099 .
Update on avoiding the warning. The warnings can be ignored as below. ``` import warnings warnings.filterwarnings("ignore", category=RuntimeWarning) ``` This is helpful when coding a (unbreakable) for loop. However, I am...
Hi @tompollard , Here's a table with example input that produced the warnings: [dip_test.txt](https://github.com/BenjaminDoran/unidip/files/4841440/dip_test.txt) Demo code: ``` import pandas as pd df=pd.read_table('dip_test.txt') import unidip.dip as dip dip.diptst(df['col1']) ``` Output: ```...