Skip to content

Commit 2fd0062

Browse files
author
Atma Mani
authored
Merge pull request #1163 from jyaistMap/jy-remove-toc
remove toc for new system
2 parents 0eac246 + c7faf06 commit 2fd0062

24 files changed

+41
-427
lines changed

samples/03_org_administrators/find-top-n-items-in-your-org.ipynb

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@
1616
"The configurations needed for this notebook are in the top few cells. While this exact use case may not be what you need, you can easily modify the configuration cells and adopt it to suit your reporting needs."
1717
]
1818
},
19-
{
20-
"cell_type": "markdown",
21-
"metadata": {
22-
"toc": true
23-
},
24-
"source": [
25-
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
26-
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Import-arcgis-and-other-libraries\" data-toc-modified-id=\"Import-arcgis-and-other-libraries-1\">Import <code>arcgis</code> and other libraries</a></span></li><li><span><a href=\"#Set-up-search-parameters\" data-toc-modified-id=\"Set-up-search-parameters-2\">Set up search parameters</a></span></li><li><span><a href=\"#Search-for-ArcGIS-Dashboard-items\" data-toc-modified-id=\"Search-for-ArcGIS-Dashboard-items-3\">Search for ArcGIS Dashboard items</a></span></li><li><span><a href=\"#Compose-a-table-from-search-results\" data-toc-modified-id=\"Compose-a-table-from-search-results-4\">Compose a table from search results</a></span></li><li><span><a href=\"#Exploratory-analysis-on-the-top-'n'-items\" data-toc-modified-id=\"Exploratory-analysis-on-the-top-'n'-items-5\">Exploratory analysis on the top 'n' items</a></span><ul class=\"toc-item\"><li><span><a href=\"#Make-a-word-cloud-out-of-the-item-titles\" data-toc-modified-id=\"Make-a-word-cloud-out-of-the-item-titles-5.1\">Make a word cloud out of the item titles</a></span></li></ul></li><li><span><a href=\"#Write-the-table-to-a-CSV-in-your-'files'-location\" data-toc-modified-id=\"Write-the-table-to-a-CSV-in-your-'files'-location-6\">Write the table to a CSV in your 'files' location</a></span></li><li><span><a href=\"#Conclusion\" data-toc-modified-id=\"Conclusion-7\">Conclusion</a></span></li></ul></div>"
27-
]
28-
},
2919
{
3020
"cell_type": "markdown",
3121
"metadata": {},
@@ -846,7 +836,7 @@
846836
"notebookRuntimeVersion": "4.0"
847837
},
848838
"kernelspec": {
849-
"display_name": "Python 3",
839+
"display_name": "Python 3 (ipykernel)",
850840
"language": "python",
851841
"name": "python3"
852842
},
@@ -860,7 +850,7 @@
860850
"name": "python",
861851
"nbconvert_exporter": "python",
862852
"pygments_lexer": "ipython3",
863-
"version": "3.6.10"
853+
"version": "3.7.11"
864854
},
865855
"toc": {
866856
"base_numbering": 1,

samples/03_org_administrators/inventory-organizational-content.ipynb

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,7 @@
1313
"id": "42a813b1",
1414
"metadata": {},
1515
"source": [
16-
"Being able to retrieve, display, analyze, and export the content within an organization Portal are important tasks for any admin. Here we will leverage the [ContentManager](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#contentmanager) and [UserManager](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#usermanager) classes of the GIS module, as well as some functionality from the [Pandas](https://pandas.pydata.org/docs/index.html) library, to accomplish those tasks.\n",
17-
"\n",
18-
"In this page we are going to observe how the following can be accomplished:\n",
19-
"- [Import Libraries](#Import-Libraries)\n",
20-
"- [Connect to ArcGIS Online](#Connect-to-ArcGIS-Online)\n",
21-
"- [Querying Content](#Querying-Content)\n",
22-
" - [Searching for Content](#Searching-for-Content)\n",
23-
" - [Displaying Content](#Displaying-Content)\n",
24-
" - [Sorting Content](#Sorting-Content)\n",
25-
"- [Querying Organization Content](#Querying-Organization-Content)\n",
26-
" - [Searching for Organization Members](#Searching-for-Organization-Members)\n",
27-
" - [Getting Member Content](#Getting-Member-Content)\n",
28-
" - [Compiling Organization Content](#Compiling-Organization-Content)\n",
29-
"- [Analyzing Organization Content with Pandas](#Analyzing-Organization-Content-with-Pandas)\n",
30-
" - [Filtering the Dataset](#Filtering-the-Dataset)\n",
31-
" - [Accessing Content by ID](#Accessing-Content-by-ID)\n",
32-
"- [Exporting Data](#Exporting-Data)"
16+
"Being able to retrieve, display, analyze, and export the content within an organization Portal are important tasks for any admin. Here we will leverage the [ContentManager](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#contentmanager) and [UserManager](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#usermanager) classes of the GIS module, as well as some functionality from the [Pandas](https://pandas.pydata.org/docs/index.html) library, to accomplish those tasks."
3317
]
3418
},
3519
{
@@ -2937,7 +2921,7 @@
29372921
"name": "python",
29382922
"nbconvert_exporter": "python",
29392923
"pygments_lexer": "ipython3",
2940-
"version": "3.9.7"
2924+
"version": "3.7.11"
29412925
}
29422926
},
29432927
"nbformat": 4,

samples/04_gis_analysts_data_scientists/address-standardization-and-correction-with-sequencetosequence.ipynb

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,6 @@
77
"# Address Standardization and Correction using SequenceToSequence model"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {},
13-
"source": [
14-
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
15-
"<div class=\"toc\">\n",
16-
"<ul class=\"toc-item\">\n",
17-
"<li><span><a href=\"#Introduction\" data-toc-modified-id=\"Introduction-1\">Introduction</a></span></li>\n",
18-
"<li><span><a href=\"#Prerequisites\" data-toc-modified-id=\"Prerequisites-2\">Prerequisites</a></span></li>\n",
19-
"<li><span><a href=\"#Imports\" data-toc-modified-id=\"Imports-3\">Imports</a></span></li>\n",
20-
"<li><span><a href=\"#Data-preparation\" data-toc-modified-id=\"Data-preparation-4\">Data preparation</a></span></li>\n",
21-
"<li><span><a href=\"#SequenceToSequence-model\" data-toc-modified-id=\"SequenceToSequence-model-5\">SequenceToSequence model</a></span></li>\n",
22-
"<ul class=\"toc-item\">\n",
23-
"<li><span><a href=\"#Load-model-architecture\" data-toc-modified-id=\"Load-model-architecture-5.1\">Load model architecture</a></span></li>\n",
24-
"<li><span><a href=\"#Model-training\" data-toc-modified-id=\"Model-training-5.2\">Model training</a></span></li> \n",
25-
"<li><span><a href=\"#Validate-results\" data-toc-modified-id=\"Validate-results-5.3\">Validate results</a></span></li>\n",
26-
"<li><span><a href=\"#Model-metrics\" data-toc-modified-id=\"Model-metrics-5.4\">Model metrics</a></span></li> \n",
27-
"<li><span><a href=\"#Saving-the-trained-model\" data-toc-modified-id=\"Saving-the-trained-model-5.5\">Saving the trained model</a></span></li>\n",
28-
"</ul>\n",
29-
"<li><span><a href=\"#Model-inference\" data-toc-modified-id=\"Model-inference-6\">Model inference</a></span></li>\n",
30-
"<li><span><a href=\"#Conclusion\" data-toc-modified-id=\"Conclusion-7\">Conclusion</a></span></li>\n",
31-
"<li><span><a href=\"#References\" data-toc-modified-id=\"References-8\">References</a></span></li>\n",
32-
"</ul></div>"
33-
]
34-
},
3510
{
3611
"cell_type": "markdown",
3712
"metadata": {},
@@ -978,7 +953,7 @@
978953
"notebookRuntimeVersion": "5.0"
979954
},
980955
"kernelspec": {
981-
"display_name": "Python 3",
956+
"display_name": "Python 3 (ipykernel)",
982957
"language": "python",
983958
"name": "python3"
984959
},
@@ -992,7 +967,7 @@
992967
"name": "python",
993968
"nbconvert_exporter": "python",
994969
"pygments_lexer": "ipython3",
995-
"version": "3.7.9"
970+
"version": "3.7.11"
996971
},
997972
"toc": {
998973
"base_numbering": 1,

samples/04_gis_analysts_data_scientists/analyze_patterns_in_construction_permits_part1.ipynb

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@
77
"# Data Visualization - Construction permits, part 1/2"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {
13-
"toc": true
14-
},
15-
"source": [
16-
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
17-
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Overview\" data-toc-modified-id=\"Overview-1\">Overview</a></span></li><li><span><a href=\"#Explore-the-data\" data-toc-modified-id=\"Explore-the-data-2\">Explore the data</a></span><ul class=\"toc-item\"><li><span><a href=\"#Data-Exploration\" data-toc-modified-id=\"Data-Exploration-2.1\">Data Exploration</a></span></li></ul></li><li><span><a href=\"#Permits-by-Status\" data-toc-modified-id=\"Permits-by-Status-3\">Permits by Status</a></span></li><li><span><a href=\"#Permits-by-Type\" data-toc-modified-id=\"Permits-by-Type-4\">Permits by Type</a></span><ul class=\"toc-item\"><li><span><a href=\"#Clean-up-the-data\" data-toc-modified-id=\"Clean-up-the-data-4.1\">Clean up the data</a></span></li><li><span><a href=\"#Filter-the-permits\" data-toc-modified-id=\"Filter-the-permits-4.2\">Filter the permits</a></span></li><li><span><a href=\"#Visualize-filtered-dataset\" data-toc-modified-id=\"Visualize-filtered-dataset-4.3\">Visualize filtered dataset</a></span></li></ul></li><li><span><a href=\"#Visualize-temporal-and-spatial-trends\" data-toc-modified-id=\"Visualize-temporal-and-spatial-trends-5\">Visualize temporal and spatial trends</a></span><ul class=\"toc-item\"><li><span><a href=\"#Visualize-permits-by-time-of-issue\" data-toc-modified-id=\"Visualize-permits-by-time-of-issue-5.1\">Visualize permits by time of issue</a></span></li></ul></li></ul></div>"
18-
]
19-
},
2010
{
2111
"cell_type": "markdown",
2212
"metadata": {},
@@ -1848,7 +1838,7 @@
18481838
"notebookRuntimeVersion": "5.0"
18491839
},
18501840
"kernelspec": {
1851-
"display_name": "Python 3",
1841+
"display_name": "Python 3 (ipykernel)",
18521842
"language": "python",
18531843
"name": "python3"
18541844
},
@@ -1862,7 +1852,7 @@
18621852
"name": "python",
18631853
"nbconvert_exporter": "python",
18641854
"pygments_lexer": "ipython3",
1865-
"version": "3.7.6"
1855+
"version": "3.7.11"
18661856
},
18671857
"toc": {
18681858
"base_numbering": 1,

samples/04_gis_analysts_data_scientists/analyze_patterns_in_construction_permits_part2.ipynb

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@
77
"# Data Summarization - Construction permits, part 2/2"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {
13-
"toc": true
14-
},
15-
"source": [
16-
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
17-
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Aggregate-points\" data-toc-modified-id=\"Aggregate-points-1\">Aggregate points</a></span></li><li><span><a href=\"#Aggregation-results\" data-toc-modified-id=\"Aggregation-results-2\">Aggregation results</a></span></li><li><span><a href=\"#Enrich-the-data\" data-toc-modified-id=\"Enrich-the-data-3\">Enrich the data</a></span></li><li><span><a href=\"#Share-your-work\" data-toc-modified-id=\"Share-your-work-4\">Share your work</a></span></li></ul></div>"
18-
]
19-
},
2010
{
2111
"cell_type": "markdown",
2212
"metadata": {},
@@ -1169,7 +1159,7 @@
11691159
"notebookRuntimeVersion": "5.0"
11701160
},
11711161
"kernelspec": {
1172-
"display_name": "Python 3",
1162+
"display_name": "Python 3 (ipykernel)",
11731163
"language": "python",
11741164
"name": "python3"
11751165
},
@@ -1183,7 +1173,7 @@
11831173
"name": "python",
11841174
"nbconvert_exporter": "python",
11851175
"pygments_lexer": "ipython3",
1186-
"version": "3.6.12"
1176+
"version": "3.7.11"
11871177
},
11881178
"toc": {
11891179
"base_numbering": 1,

samples/04_gis_analysts_data_scientists/analyze_us_tornadoes.ipynb

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@
77
"# Analyzing United States tornadoes"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {
13-
"toc": true
14-
},
15-
"source": [
16-
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
17-
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Connect-your-GIS\" data-toc-modified-id=\"Connect-your-GIS-1\">Connect your GIS</a></span></li><li><span><a href=\"#Who-has-suffered-the-most?\" data-toc-modified-id=\"Who-has-suffered-the-most?-2\">Who has suffered the most?</a></span></li><li><span><a href=\"#Visualize-which-states-have-had-the-most-tornadoes.\" data-toc-modified-id=\"Visualize-which-states-have-had-the-most-tornadoes.-3\">Visualize which states have had the most tornadoes.</a></span></li><li><span><a href=\"#Conclusion\" data-toc-modified-id=\"Conclusion-4\">Conclusion</a></span></li></ul></div>"
18-
]
19-
},
2010
{
2111
"cell_type": "markdown",
2212
"metadata": {},
@@ -663,7 +653,7 @@
663653
"notebookRuntimeVersion": "5.0"
664654
},
665655
"kernelspec": {
666-
"display_name": "Python 3",
656+
"display_name": "Python 3 (ipykernel)",
667657
"language": "python",
668658
"name": "python3"
669659
},
@@ -677,7 +667,7 @@
677667
"name": "python",
678668
"nbconvert_exporter": "python",
679669
"pygments_lexer": "ipython3",
680-
"version": "3.7.10"
670+
"version": "3.7.11"
681671
},
682672
"toc": {
683673
"base_numbering": 1,

samples/04_gis_analysts_data_scientists/analyzing_growth_factors_of_airbnb_properties_in_new_york_city.ipynb

Lines changed: 3 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,6 @@
77
"# Analysing the factors of growth and spatial distribution of Airbnb properties across New York City"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {},
13-
"source": [
14-
"## Table of Contents\n",
15-
"* [Introduction](#1) \n",
16-
"* [Necessary Imports](#117)\n",
17-
"* [Accessing the Airbnb data as of 2019 and the NYC tracts dataset](#69) \n",
18-
"* [Visualizing dataset](#50) \n",
19-
"* [Aggregating Airbnb count by Tracts for NYC](#81) \n",
20-
"* [Importing demographic data using geoenrichment service](#133) \n",
21-
"* [Estimating distances of tracts from various city features](#347) \n",
22-
"* [Importing Borough Info for each Tract](#508) \n",
23-
"* [Merging all the above estimated data set of features](#504) \n",
24-
"* [Adding census data 2019 obtained using data enrich tool](#612) \n",
25-
"* [Model Building](#544)\n",
26-
" * [Random Forest Regressor Model](#643) \n",
27-
" * [Feature importance of Random Forest model](#641) \n",
28-
" * [Gradient Boosting Regressor Model](#645) \n",
29-
" * [Feature Importance of Gradient Boosting Model](#647) \n",
30-
"* [Running cross validation](#651)\n",
31-
"* [Result Visualization](#652)\n",
32-
"* [Conclusion](#655)\n",
33-
"* [Data resources](#656) \n",
34-
"* [Summary of methods used](#657)"
35-
]
36-
},
3710
{
3811
"cell_type": "markdown",
3912
"metadata": {},
@@ -10517,9 +10490,9 @@
1051710490
"notebookRuntimeVersion": "5.0"
1051810491
},
1051910492
"kernelspec": {
10520-
"display_name": "pro28_DL18FebA",
10493+
"display_name": "Python 3 (ipykernel)",
1052110494
"language": "python",
10522-
"name": "pro28_dl18feba"
10495+
"name": "python3"
1052310496
},
1052410497
"language_info": {
1052510498
"codemirror_mode": {
@@ -10531,7 +10504,7 @@
1053110504
"name": "python",
1053210505
"nbconvert_exporter": "python",
1053310506
"pygments_lexer": "ipython3",
10534-
"version": "3.7.9"
10507+
"version": "3.7.11"
1053510508
}
1053610509
},
1053710510
"nbformat": 4,

samples/04_gis_analysts_data_scientists/analyzing_violent_crime.ipynb

Lines changed: 2 additions & 31 deletions
Large diffs are not rendered by default.

samples/04_gis_analysts_data_scientists/automate_building_footprint_extraction_using_instance_segmentation.ipynb

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,6 @@
1515
"* 🥠 Deep Learning and Instance Segmentation"
1616
]
1717
},
18-
{
19-
"cell_type": "markdown",
20-
"metadata": {},
21-
"source": [
22-
"## Table of Contents\n",
23-
"* [Introduction](#Introduction)\n",
24-
"* [Export training data for deep learning](#Export-training-data-for-deep-learning)\n",
25-
"* [Model training](#Model-training)\n",
26-
" * [Necessary Imports](#Necessary-Imports)\n",
27-
" * [Visualize training data](#Visualize-training-data)\n",
28-
" * [Load model architecture](#Load-model-architecture)\n",
29-
" * [Train the model](#Train-the-model)\n",
30-
" * [Visualize detected building footprints](#Visualize-detected-building-footprints)\n",
31-
" * [Save model](#Save-model)\n",
32-
"* [Model inference](#Model-inference)"
33-
]
34-
},
3518
{
3619
"cell_type": "markdown",
3720
"metadata": {},

samples/04_gis_analysts_data_scientists/automate_road_surface_investigation_using_deep_learning.ipynb

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,6 @@
1515
"* 🥠 Deep Learning and Object Detection"
1616
]
1717
},
18-
{
19-
"cell_type": "markdown",
20-
"metadata": {},
21-
"source": [
22-
"## Table of Contents\n",
23-
"* [Introduction and objective](#Introduction-and-objective)\n",
24-
"* [Necessary imports](#Necessary-imports)\n",
25-
"* [Prepare data that will be used for training](#Prepare-data-that-will-be-used-for-training)\n",
26-
"* [Model training](#Model-training)\n",
27-
" * [Visualize training data](#Visualize-training-data)\n",
28-
" * [Load model architecture](#Load-model-architecture)\n",
29-
" * [Train a model](#Train-a-model)\n",
30-
" * [Detect and visualize pavement cracks in validation set](#Detect-and-visualize-pavement-cracks-in-validation-set)\n",
31-
" * [Save the model](#Save-the-model)\n",
32-
"* [Model inference](#Model-inference)\n",
33-
" * [Detecting pavement cracks on an image](#Detecting-pavement-cracks-on-an-image)\n",
34-
" * [Detecting pavement cracks from video feed](#Detecting-pavement-cracks-from-video-feed)\n",
35-
"* [Conclusion](#Conclusion)\n",
36-
"* [References](#References)"
37-
]
38-
},
3918
{
4019
"cell_type": "markdown",
4120
"metadata": {},
@@ -1474,7 +1453,7 @@
14741453
"notebookRuntimeVersion": "5.0"
14751454
},
14761455
"kernelspec": {
1477-
"display_name": "Python 3",
1456+
"display_name": "Python 3 (ipykernel)",
14781457
"language": "python",
14791458
"name": "python3"
14801459
},
@@ -1488,7 +1467,7 @@
14881467
"name": "python",
14891468
"nbconvert_exporter": "python",
14901469
"pygments_lexer": "ipython3",
1491-
"version": "3.7.9"
1470+
"version": "3.7.11"
14921471
}
14931472
},
14941473
"nbformat": 4,

0 commit comments

Comments
 (0)