Skip to content

Commit

Permalink
Hide cell inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Feb 9, 2024
1 parent 56eae2d commit 09446c8
Show file tree
Hide file tree
Showing 7 changed files with 179 additions and 38 deletions.
25 changes: 19 additions & 6 deletions docs/experiments/e230920_subcool/find_centers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"execution_count": null,
"metadata": {
"tags": [
"hide-input",
"parameters"
]
},
Expand Down Expand Up @@ -77,7 +78,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -122,7 +125,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -324,7 +329,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -529,7 +536,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -709,7 +718,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -914,7 +925,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down
15 changes: 13 additions & 2 deletions docs/experiments/e230920_subcool/find_contours.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Find contours\n",
"\n",
"Export contours for this experiment.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"from boilercv.data.sets import get_contours_df"
Expand All @@ -21,6 +27,7 @@
"execution_count": null,
"metadata": {
"tags": [
"hide-input",
"parameters"
]
},
Expand All @@ -32,7 +39,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [
{
"data": {
Expand Down
27 changes: 21 additions & 6 deletions docs/experiments/e230920_subcool/find_size.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"execution_count": null,
"metadata": {
"tags": [
"hide-input",
"parameters"
]
},
Expand Down Expand Up @@ -80,7 +81,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -126,7 +129,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -341,7 +346,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [
{
"data": {
Expand Down Expand Up @@ -565,7 +574,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -762,7 +773,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down Expand Up @@ -1046,7 +1059,9 @@
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": []
"tags": [
"hide-input"
]
},
"outputs": [
{
Expand Down
45 changes: 37 additions & 8 deletions docs/experiments/e230920_subcool/find_tracks.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Track bubbles\n",
"# Find tracks\n",
"\n",
"Compare experimental bubble histories to bubble history correlations. Bubble detection and linking performed by Trackpy, an implementation of the Crocker-Grier algorithm [@allanTrackpy2018; @crockerMethodsDigitalVideo1996].\n"
]
Expand All @@ -15,6 +15,7 @@
"execution_count": null,
"metadata": {
"tags": [
"hide-input",
"parameters"
]
},
Expand Down Expand Up @@ -102,7 +103,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"PATH_TIME = TIME.replace(\":\", \"-\")\n",
Expand Down Expand Up @@ -141,7 +146,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"tracks = (\n",
Expand Down Expand Up @@ -210,7 +219,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"figure, ax = subplots()\n",
Expand Down Expand Up @@ -274,7 +287,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"departing_long_lived_objects = (\n",
Expand Down Expand Up @@ -364,7 +381,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"figure, ax = subplots()\n",
Expand Down Expand Up @@ -427,7 +448,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"object_averages = (\n",
Expand Down Expand Up @@ -490,7 +515,11 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": [
"hide-input"
]
},
"outputs": [],
"source": [
"figure, ax = subplots()\n",
Expand Down
Loading

0 comments on commit 09446c8

Please sign in to comment.