These instructions form a quick and simple setup to get Jupyterlab running via Anaconda.
conda-forge
and hit enter.jupyterlab
in the textbox to the right.in terminal, ensure that anaconda/bin is included in your path:
eg. export PATH="/User/Guest/anaconda/bin:$PATH
activate the environment created above:
source activate <envt_name>
install (google-drive)[https://github.com/jupyterlab/jupyterlab-google-drive] extension :
jupyter labextension install @jupyterlab/google-drive
In terminal, enter:
jupyter lab
oops. Looks like this is broken in 0.27.0
In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
from ipywidgets import interact, interactive
import ipywidgets
In [2]:
import pandas as pd
In [3]:
df = pd.read_csv("DESeq2_pvalues.out", sep=' ')
df["pathway"] = df.baseMean.apply(lambda x: int(x)%7)
In [4]:
df.head()
Out[4]: