Exploring COVID19 Clinical Data
Exploring 1K+ tests from California, United States
Introduction
This notebook is an exploration of the COVID19 Clinical Data released by @CarbonHealth and @BraidHealth
There was a 'Forbidden' error fetching URL: 'https://twitter.com/djpardis/status/1253068434385977349'
# collapse-hide
import json
import random
from pathlib import Path
import pandas as pd
%load_ext autoreload
%autoreload 2
Path.ls = lambda x: list(x.iterdir())
Boxes / Callouts
Typing > Warning: There will be no second warning!
will render this:
Typing > Important: Pay attention! It's important.
will render this:
Typing > Tip: This is my tip.
will render this:
Typing > Note: Take note of this.
will render this:
Typing > Note: A doc link to [an example website: fast.ai](https://www.fast.ai/) should also work fine.
will render in the docs:
Footnotes
You can have footnotes in notebooks, however the syntax is different compared to markdown documents. This guide provides more detail about this syntax, which looks like this:
For example, here is a footnote {% fn 1 %}.
And another {% fn 2 %}
{{ 'This is the footnote.' | fndetail: 1 }}
{{ 'This is the other footnote. You can even have a [link](www.github.com)!' | fndetail: 2 }}
For example, here is a footnote 1.
And another 2
1. This is the footnote.↩