Try it on Binder!
Combining JupyterLab 3.1.0rc2 on Binder with RTC and RetroLab 0.2.2 on Binder to get something closer to the classic notebook where Real Time Colloaboration works. Idea is from here.
Try it on Binder!
Combining JupyterLab 3.1.0rc2 on Binder with RTC and RetroLab 0.2.2 on Binder to get something closer to the classic notebook where Real Time Colloaboration works. Idea is from here.
The maintainers of the jupyter(lab)-lsp would like to propose its incorporation as an official Project Jupyter project, as signalled by a new, Jupyter-branded GitHub organization. We feel it would benefit Jupyter users through higher velocity in delivering more robust features otherwise missing in the Jupyter interactive computing experience.
from pandas_explorer import pandas_explorer | |
from pandas import read_csv | |
iris = read_csv('https://raw.githubusercontent.com/mwaskom/seaborn-data/master/iris.csv') | |
pandas_explorer(iris, title='Iris') |
# for indvs and symptoms see https://github.com/kjhealy/covid_symptoms | |
mapping = list( | |
'Fatigue'='tired-regular', | |
'Anosmia'='socks-solid', | |
'Cough'='head-side-cough-solid', | |
'Fever'='thermometer-full-solid', | |
'Diarrhea'='toilet-solid', | |
'Breath'='lungs-solid' | |
) |
#!/usr/bin/env python3 | |
import sys | |
import json | |
from subprocess import run | |
from base64 import decodebytes, encodebytes | |
from tempfile import NamedTemporaryFile | |
try: | |
from tqdm import tqdm | |
except ImportError: |