Category Archives: Pandas
pandas -4 grouping
Categoricals and groupby
Boolean filter and count
Add Anaconda new Python environment & add to jupyter notebook kernel
Create a virtual environment for your project
conda create -n yourenvname python=x.x anaconda
Activate your virtual environment
source activate yourenvname
list conda environment
conda info --envs
Install additional Python packages to a virtual environment
conda install -n yourenvname [package]
Add the new environment to jupyter notebook
pip install ipykernel python -m ipykernel install --user --name=yourenvname
list jupyter notebook’s kernels info (config) , list kernel environment
jupyter kernelspec list conda info --envs
Change name/ properties of the environment:
go to the path under “jupyter kernelspec list”, edit the config file directly
delete environment
conda remove --name myenv --all