├── Cleaning Data with Python.ipynb ├── Cleaning_Data_with_SQL_Part1.sql ├── Exploring Data with Python (EDA).ipynb ├── Exploring_Data_SQL_Part1.sql ├── LEGO Data Analysis - Answered.ipynb ├── LEGO Data Analysis - Rebrickable.ipynb ├── LEGO_Data_Analysis.sql ├── RFM_Segmentation_Sales_Analysis_Main.sql ├── Visualizing_Data_with_Tableau.sql └── cohort_rentention_analysis.sql /Cleaning Data with Python.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 1, 6 | "id": "f78f26ee", 7 | "metadata": {}, 8 | "outputs": [], 9 | "source": [ 10 | "#importing libraries\n", 11 | "import pandas as pd\n", 12 | "import numpy as np" 13 | ] 14 | }, 15 | { 16 | "cell_type": "code", 17 | "execution_count": 2, 18 | "id": "0ed3cdb1", 19 | "metadata": {}, 20 | "outputs": [], 21 | "source": [ 22 | "#Getting Data\n", 23 | "data = pd.read_excel(\"SBA Table of Size Standards_Effective Aug 19, 2019.xlsx\", sheet_name = 'table_of_size_standards-all')" 24 | ] 25 | }, 26 | { 27 | "cell_type": "code", 28 | "execution_count": 3, 29 | "id": "28101559", 30 | "metadata": {}, 31 | "outputs": [ 32 | { 33 | "data": { 34 | "text/html": [ 35 | "
\n", 53 | " | NAICS Codes | \n", 54 | "NAICS Industry Description | \n", 55 | "Size Standards \\nin millions of dollars | \n", 56 | "Size standards in number of employees | \n", 57 | "Footnotes | \n", 58 | "
---|---|---|---|---|---|
0 | \n", 63 | "NaN | \n", 64 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 65 | "NaN | \n", 66 | "NaN | \n", 67 | "NaN | \n", 68 | "
1 | \n", 71 | "Subsector 111 – Crop Production | \n", 72 | "NaN | \n", 73 | "NaN | \n", 74 | "NaN | \n", 75 | "NaN | \n", 76 | "
2 | \n", 79 | "111110 | \n", 80 | "Soybean Farming | \n", 81 | "1 | \n", 82 | "NaN | \n", 83 | "NaN | \n", 84 | "
3 | \n", 87 | "111120 | \n", 88 | "Oilseed (except Soybean) Farming | \n", 89 | "1 | \n", 90 | "NaN | \n", 91 | "NaN | \n", 92 | "
4 | \n", 95 | "111130 | \n", 96 | "Dry Pea and Bean Farming | \n", 97 | "1 | \n", 98 | "NaN | \n", 99 | "NaN | \n", 100 | "
... | \n", 103 | "... | \n", 104 | "... | \n", 105 | "... | \n", 106 | "... | \n", 107 | "... | \n", 108 | "
1144 | \n", 111 | "813930 | \n", 112 | "Labor Unions and Similar Labor Organizations | \n", 113 | "8 | \n", 114 | "NaN | \n", 115 | "NaN | \n", 116 | "
1145 | \n", 119 | "813940 | \n", 120 | "Political Organizations | \n", 121 | "8 | \n", 122 | "NaN | \n", 123 | "NaN | \n", 124 | "
1146 | \n", 127 | "813990 | \n", 128 | "Other Similar Organizations (except Business, ... | \n", 129 | "8 | \n", 130 | "NaN | \n", 131 | "NaN | \n", 132 | "
1147 | \n", 135 | "NaN | \n", 136 | "Sector 92 – Public Administration | \n", 137 | "NaN | \n", 138 | "NaN | \n", 139 | "See footnote 19 | \n", 140 | "
1148 | \n", 143 | "NaN | \n", 144 | "(Small business size standards are not establi... | \n", 145 | "NaN | \n", 146 | "NaN | \n", 147 | "NaN | \n", 148 | "
1149 rows × 5 columns
\n", 152 | "\n", 246 | " | NAICS Codes | \n", 247 | "NAICS Industry Description | \n", 248 | "Size Standards \\nin millions of dollars | \n", 249 | "Size standards in number of employees | \n", 250 | "Footnotes | \n", 251 | "
---|---|---|---|---|---|
0 | \n", 256 | "NaN | \n", 257 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 258 | "NaN | \n", 259 | "NaN | \n", 260 | "NaN | \n", 261 | "
1 | \n", 264 | "Subsector 111 – Crop Production | \n", 265 | "NaN | \n", 266 | "NaN | \n", 267 | "NaN | \n", 268 | "NaN | \n", 269 | "
2 | \n", 272 | "111110 | \n", 273 | "Soybean Farming | \n", 274 | "1 | \n", 275 | "NaN | \n", 276 | "NaN | \n", 277 | "
3 | \n", 280 | "111120 | \n", 281 | "Oilseed (except Soybean) Farming | \n", 282 | "1 | \n", 283 | "NaN | \n", 284 | "NaN | \n", 285 | "
4 | \n", 288 | "111130 | \n", 289 | "Dry Pea and Bean Farming | \n", 290 | "1 | \n", 291 | "NaN | \n", 292 | "NaN | \n", 293 | "
\n", 364 | " | NAICS Codes | \n", 365 | "NAICS Industry Description | \n", 366 | "Size Standards \\nin millions of dollars | \n", 367 | "Size standards in number of employees | \n", 368 | "Footnotes | \n", 369 | "
---|---|---|---|---|---|
1144 | \n", 374 | "813930 | \n", 375 | "Labor Unions and Similar Labor Organizations | \n", 376 | "8 | \n", 377 | "NaN | \n", 378 | "NaN | \n", 379 | "
1145 | \n", 382 | "813940 | \n", 383 | "Political Organizations | \n", 384 | "8 | \n", 385 | "NaN | \n", 386 | "NaN | \n", 387 | "
1146 | \n", 390 | "813990 | \n", 391 | "Other Similar Organizations (except Business, ... | \n", 392 | "8 | \n", 393 | "NaN | \n", 394 | "NaN | \n", 395 | "
1147 | \n", 398 | "NaN | \n", 399 | "Sector 92 – Public Administration | \n", 400 | "NaN | \n", 401 | "NaN | \n", 402 | "See footnote 19 | \n", 403 | "
1148 | \n", 406 | "NaN | \n", 407 | "(Small business size standards are not establi... | \n", 408 | "NaN | \n", 409 | "NaN | \n", 410 | "NaN | \n", 411 | "
\n", 573 | " | NAICS Codes | \n", 574 | "NAICS Industry Description | \n", 575 | "Size Standards \\nin millions of dollars | \n", 576 | "Size standards in number of employees | \n", 577 | "Footnotes | \n", 578 | "
---|---|---|---|---|---|
0 | \n", 583 | "NaN | \n", 584 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 585 | "NaN | \n", 586 | "NaN | \n", 587 | "NaN | \n", 588 | "
71 | \n", 591 | "NaN | \n", 592 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 593 | "NaN | \n", 594 | "NaN | \n", 595 | "NaN | \n", 596 | "
103 | \n", 599 | "NaN | \n", 600 | "Sector 22 – Utilities | \n", 601 | "NaN | \n", 602 | "NaN | \n", 603 | "NaN | \n", 604 | "
119 | \n", 607 | "NaN | \n", 608 | "Sector 23 – Construction | \n", 609 | "NaN | \n", 610 | "NaN | \n", 611 | "NaN | \n", 612 | "
156 | \n", 615 | "NaN | \n", 616 | "Sector 31 – 33 – Manufacturing | \n", 617 | "NaN | \n", 618 | "NaN | \n", 619 | "NaN | \n", 620 | "
\n", 707 | " | NAICS Codes | \n", 708 | "NAICS Industry Description | \n", 709 | "Size Standards \\nin millions of dollars | \n", 710 | "Size standards in number of employees | \n", 711 | "Footnotes | \n", 712 | "LookupCodes | \n", 713 | "
---|---|---|---|---|---|---|
0 | \n", 718 | "NaN | \n", 719 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 720 | "NaN | \n", 721 | "NaN | \n", 722 | "NaN | \n", 723 | "11 | \n", 724 | "
71 | \n", 727 | "NaN | \n", 728 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 729 | "NaN | \n", 730 | "NaN | \n", 731 | "NaN | \n", 732 | "21 | \n", 733 | "
103 | \n", 736 | "NaN | \n", 737 | "Sector 22 – Utilities | \n", 738 | "NaN | \n", 739 | "NaN | \n", 740 | "NaN | \n", 741 | "22 | \n", 742 | "
119 | \n", 745 | "NaN | \n", 746 | "Sector 23 – Construction | \n", 747 | "NaN | \n", 748 | "NaN | \n", 749 | "NaN | \n", 750 | "23 | \n", 751 | "
156 | \n", 754 | "NaN | \n", 755 | "Sector 31 – 33 – Manufacturing | \n", 756 | "NaN | \n", 757 | "NaN | \n", 758 | "NaN | \n", 759 | "31 | \n", 760 | "
\n", 891 | " | NAICS Codes | \n", 892 | "NAICS Industry Description | \n", 893 | "Size Standards \\nin millions of dollars | \n", 894 | "Size standards in number of employees | \n", 895 | "Footnotes | \n", 896 | "LookupCodes | \n", 897 | "Sector | \n", 898 | "
---|---|---|---|---|---|---|---|
0 | \n", 903 | "NaN | \n", 904 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 905 | "NaN | \n", 906 | "NaN | \n", 907 | "NaN | \n", 908 | "11 | \n", 909 | "Agriculture, Forestry, Fishing and Hunting | \n", 910 | "
71 | \n", 913 | "NaN | \n", 914 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 915 | "NaN | \n", 916 | "NaN | \n", 917 | "NaN | \n", 918 | "21 | \n", 919 | "Mining, Quarrying, and Oil and Gas Extraction | \n", 920 | "
103 | \n", 923 | "NaN | \n", 924 | "Sector 22 – Utilities | \n", 925 | "NaN | \n", 926 | "NaN | \n", 927 | "NaN | \n", 928 | "22 | \n", 929 | "Utilities | \n", 930 | "
119 | \n", 933 | "NaN | \n", 934 | "Sector 23 – Construction | \n", 935 | "NaN | \n", 936 | "NaN | \n", 937 | "NaN | \n", 938 | "23 | \n", 939 | "Construction | \n", 940 | "
156 | \n", 943 | "NaN | \n", 944 | "Sector 31 – 33 – Manufacturing | \n", 945 | "NaN | \n", 946 | "NaN | \n", 947 | "NaN | \n", 948 | "31 | \n", 949 | "33 – Manufacturing | \n", 950 | "
\n", 1058 | " | NAICS Industry Description | \n", 1059 | "LookupCodes | \n", 1060 | "Sector | \n", 1061 | "
---|---|---|---|
0 | \n", 1066 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 1067 | "11 | \n", 1068 | "Agriculture, Forestry, Fishing and Hunting | \n", 1069 | "
71 | \n", 1072 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 1073 | "21 | \n", 1074 | "Mining, Quarrying, and Oil and Gas Extraction | \n", 1075 | "
103 | \n", 1078 | "Sector 22 – Utilities | \n", 1079 | "22 | \n", 1080 | "Utilities | \n", 1081 | "
119 | \n", 1084 | "Sector 23 – Construction | \n", 1085 | "23 | \n", 1086 | "Construction | \n", 1087 | "
156 | \n", 1090 | "Sector 31 – 33 – Manufacturing | \n", 1091 | "31 | \n", 1092 | "33 – Manufacturing | \n", 1093 | "
538 | \n", 1096 | "Sector 42 – Wholesale Trade | \n", 1097 | "42 | \n", 1098 | "Wholesale Trade | \n", 1099 | "
539 | \n", 1102 | "(These NAICS codes shall not be used to classi... | \n", 1103 | "NA | \n", 1104 | "codes shall not be used to classify Governmen... | \n", 1105 | "
614 | \n", 1108 | "Sector 44 - 45 – Retail Trade | \n", 1109 | "44 | \n", 1110 | "45 – Retail Trade | \n", 1111 | "
615 | \n", 1114 | "(These NAICS codes shall not be used to classi... | \n", 1115 | "NA | \n", 1116 | "codes shall not be used to classify Governmen... | \n", 1117 | "
694 | \n", 1120 | "Sector 48 - 49 – Transportation and Warehousing | \n", 1121 | "48 | \n", 1122 | "49 – Transportation and Warehousing | \n", 1123 | "
764 | \n", 1126 | "Sector 51 – Information | \n", 1127 | "51 | \n", 1128 | "Information | \n", 1129 | "
802 | \n", 1132 | "Sector 52 – Finance and Insurance | \n", 1133 | "52 | \n", 1134 | "Finance and Insurance | \n", 1135 | "
847 | \n", 1138 | "Sector 53 – Real Estate and Rental and Leasing | \n", 1139 | "53 | \n", 1140 | "Real Estate and Rental and Leasing | \n", 1141 | "
875 | \n", 1144 | "Sector 54 – Professional, Scientific and Techn... | \n", 1145 | "54 | \n", 1146 | "Professional, Scientific and Technical Services | \n", 1147 | "
932 | \n", 1150 | "Sector 55 – Management of Companies and Enterp... | \n", 1151 | "55 | \n", 1152 | "Management of Companies and Enterprises | \n", 1153 | "
936 | \n", 1156 | "Sector 56 – Administrative and Support, Waste ... | \n", 1157 | "56 | \n", 1158 | "Administrative and Support, Waste Management a... | \n", 1159 | "
984 | \n", 1162 | "Sector 61 – Educational Services | \n", 1163 | "61 | \n", 1164 | "Educational Services | \n", 1165 | "
1004 | \n", 1168 | "Sector 62 – Health Care and Social Assistance | \n", 1169 | "62 | \n", 1170 | "Health Care and Social Assistance | \n", 1171 | "
1048 | \n", 1174 | "Sector 71 – Arts, Entertainment and Recreation | \n", 1175 | "71 | \n", 1176 | "Arts, Entertainment and Recreation | \n", 1177 | "
1077 | \n", 1180 | "Sector 72 – Accommodation and Food Services | \n", 1181 | "72 | \n", 1182 | "Accommodation and Food Services | \n", 1183 | "
1095 | \n", 1186 | "Sector 81 – Other Services | \n", 1187 | "81 | \n", 1188 | "Other Services | \n", 1189 | "
1147 | \n", 1192 | "Sector 92 – Public Administration | \n", 1193 | "92 | \n", 1194 | "Public Administration | \n", 1195 | "
1148 | \n", 1198 | "(Small business size standards are not establi... | \n", 1199 | "bu | \n", 1200 | "ess size standards are not established for thi... | \n", 1201 | "
\n", 1332 | " | NAICS Industry Description | \n", 1333 | "LookupCodes | \n", 1334 | "Sector | \n", 1335 | "
---|---|---|---|
0 | \n", 1340 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 1341 | "11 | \n", 1342 | "Agriculture, Forestry, Fishing and Hunting | \n", 1343 | "
71 | \n", 1346 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 1347 | "21 | \n", 1348 | "Mining, Quarrying, and Oil and Gas Extraction | \n", 1349 | "
103 | \n", 1352 | "Sector 22 – Utilities | \n", 1353 | "22 | \n", 1354 | "Utilities | \n", 1355 | "
119 | \n", 1358 | "Sector 23 – Construction | \n", 1359 | "23 | \n", 1360 | "Construction | \n", 1361 | "
156 | \n", 1364 | "Sector 31 – 33 – Manufacturing | \n", 1365 | "31 | \n", 1366 | "Manufacturing | \n", 1367 | "
538 | \n", 1370 | "Sector 42 – Wholesale Trade | \n", 1371 | "42 | \n", 1372 | "Wholesale Trade | \n", 1373 | "
614 | \n", 1376 | "Sector 44 - 45 – Retail Trade | \n", 1377 | "44 | \n", 1378 | "45 – Retail Trade | \n", 1379 | "
694 | \n", 1382 | "Sector 48 - 49 – Transportation and Warehousing | \n", 1383 | "48 | \n", 1384 | "49 – Transportation and Warehousing | \n", 1385 | "
764 | \n", 1388 | "Sector 51 – Information | \n", 1389 | "51 | \n", 1390 | "Information | \n", 1391 | "
802 | \n", 1394 | "Sector 52 – Finance and Insurance | \n", 1395 | "52 | \n", 1396 | "Finance and Insurance | \n", 1397 | "
847 | \n", 1400 | "Sector 53 – Real Estate and Rental and Leasing | \n", 1401 | "53 | \n", 1402 | "Real Estate and Rental and Leasing | \n", 1403 | "
875 | \n", 1406 | "Sector 54 – Professional, Scientific and Techn... | \n", 1407 | "54 | \n", 1408 | "Professional, Scientific and Technical Services | \n", 1409 | "
932 | \n", 1412 | "Sector 55 – Management of Companies and Enterp... | \n", 1413 | "55 | \n", 1414 | "Management of Companies and Enterprises | \n", 1415 | "
936 | \n", 1418 | "Sector 56 – Administrative and Support, Waste ... | \n", 1419 | "56 | \n", 1420 | "Administrative and Support, Waste Management a... | \n", 1421 | "
984 | \n", 1424 | "Sector 61 – Educational Services | \n", 1425 | "61 | \n", 1426 | "Educational Services | \n", 1427 | "
1004 | \n", 1430 | "Sector 62 – Health Care and Social Assistance | \n", 1431 | "62 | \n", 1432 | "Health Care and Social Assistance | \n", 1433 | "
1048 | \n", 1436 | "Sector 71 – Arts, Entertainment and Recreation | \n", 1437 | "71 | \n", 1438 | "Arts, Entertainment and Recreation | \n", 1439 | "
1077 | \n", 1442 | "Sector 72 – Accommodation and Food Services | \n", 1443 | "72 | \n", 1444 | "Accommodation and Food Services | \n", 1445 | "
1095 | \n", 1448 | "Sector 81 – Other Services | \n", 1449 | "81 | \n", 1450 | "Other Services | \n", 1451 | "
1147 | \n", 1454 | "Sector 92 – Public Administration | \n", 1455 | "92 | \n", 1456 | "Public Administration | \n", 1457 | "
\n", 1574 | " | NAICS Industry Description | \n", 1575 | "LookupCodes | \n", 1576 | "Sector | \n", 1577 | "
---|---|---|---|
0 | \n", 1582 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 1583 | "11 | \n", 1584 | "Agriculture, Forestry, Fishing and Hunting | \n", 1585 | "
71 | \n", 1588 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 1589 | "21 | \n", 1590 | "Mining, Quarrying, and Oil and Gas Extraction | \n", 1591 | "
103 | \n", 1594 | "Sector 22 – Utilities | \n", 1595 | "22 | \n", 1596 | "Utilities | \n", 1597 | "
119 | \n", 1600 | "Sector 23 – Construction | \n", 1601 | "23 | \n", 1602 | "Construction | \n", 1603 | "
156 | \n", 1606 | "Sector 31 – 33 – Manufacturing | \n", 1607 | "31 | \n", 1608 | "Manufacturing | \n", 1609 | "
538 | \n", 1612 | "Sector 42 – Wholesale Trade | \n", 1613 | "42 | \n", 1614 | "Wholesale Trade | \n", 1615 | "
614 | \n", 1618 | "Sector 44 - 45 – Retail Trade | \n", 1619 | "44 | \n", 1620 | "Retail Trade | \n", 1621 | "
694 | \n", 1624 | "Sector 48 - 49 – Transportation and Warehousing | \n", 1625 | "48 | \n", 1626 | "Transportation and Warehousing | \n", 1627 | "
764 | \n", 1630 | "Sector 51 – Information | \n", 1631 | "51 | \n", 1632 | "Information | \n", 1633 | "
802 | \n", 1636 | "Sector 52 – Finance and Insurance | \n", 1637 | "52 | \n", 1638 | "Finance and Insurance | \n", 1639 | "
847 | \n", 1642 | "Sector 53 – Real Estate and Rental and Leasing | \n", 1643 | "53 | \n", 1644 | "Real Estate and Rental and Leasing | \n", 1645 | "
875 | \n", 1648 | "Sector 54 – Professional, Scientific and Techn... | \n", 1649 | "54 | \n", 1650 | "Professional, Scientific and Technical Services | \n", 1651 | "
932 | \n", 1654 | "Sector 55 – Management of Companies and Enterp... | \n", 1655 | "55 | \n", 1656 | "Management of Companies and Enterprises | \n", 1657 | "
936 | \n", 1660 | "Sector 56 – Administrative and Support, Waste ... | \n", 1661 | "56 | \n", 1662 | "Administrative and Support, Waste Management a... | \n", 1663 | "
984 | \n", 1666 | "Sector 61 – Educational Services | \n", 1667 | "61 | \n", 1668 | "Educational Services | \n", 1669 | "
1004 | \n", 1672 | "Sector 62 – Health Care and Social Assistance | \n", 1673 | "62 | \n", 1674 | "Health Care and Social Assistance | \n", 1675 | "
1048 | \n", 1678 | "Sector 71 – Arts, Entertainment and Recreation | \n", 1679 | "71 | \n", 1680 | "Arts, Entertainment and Recreation | \n", 1681 | "
1077 | \n", 1684 | "Sector 72 – Accommodation and Food Services | \n", 1685 | "72 | \n", 1686 | "Accommodation and Food Services | \n", 1687 | "
1095 | \n", 1690 | "Sector 81 – Other Services | \n", 1691 | "81 | \n", 1692 | "Other Services | \n", 1693 | "
1147 | \n", 1696 | "Sector 92 – Public Administration | \n", 1697 | "92 | \n", 1698 | "Public Administration | \n", 1699 | "
\n", 1822 | " | NAICS Industry Description | \n", 1823 | "LookupCodes | \n", 1824 | "Sector | \n", 1825 | "
---|---|---|---|
0 | \n", 1830 | "Sector 11 – Agriculture, Forestry, Fishing and... | \n", 1831 | "11 | \n", 1832 | "Agriculture, Forestry, Fishing and Hunting | \n", 1833 | "
1 | \n", 1836 | "Sector 21 – Mining, Quarrying, and Oil and Gas... | \n", 1837 | "21 | \n", 1838 | "Mining, Quarrying, and Oil and Gas Extraction | \n", 1839 | "
2 | \n", 1842 | "Sector 22 – Utilities | \n", 1843 | "22 | \n", 1844 | "Utilities | \n", 1845 | "
3 | \n", 1848 | "Sector 23 – Construction | \n", 1849 | "23 | \n", 1850 | "Construction | \n", 1851 | "
4 | \n", 1854 | "Sector 31 – 33 – Manufacturing | \n", 1855 | "31 | \n", 1856 | "Manufacturing | \n", 1857 | "
5 | \n", 1860 | "Sector 42 – Wholesale Trade | \n", 1861 | "42 | \n", 1862 | "Wholesale Trade | \n", 1863 | "
6 | \n", 1866 | "Sector 44 - 45 – Retail Trade | \n", 1867 | "44 | \n", 1868 | "Retail Trade | \n", 1869 | "
7 | \n", 1872 | "Sector 48 - 49 – Transportation and Warehousing | \n", 1873 | "48 | \n", 1874 | "Transportation and Warehousing | \n", 1875 | "
8 | \n", 1878 | "Sector 51 – Information | \n", 1879 | "51 | \n", 1880 | "Information | \n", 1881 | "
9 | \n", 1884 | "Sector 52 – Finance and Insurance | \n", 1885 | "52 | \n", 1886 | "Finance and Insurance | \n", 1887 | "
10 | \n", 1890 | "Sector 53 – Real Estate and Rental and Leasing | \n", 1891 | "53 | \n", 1892 | "Real Estate and Rental and Leasing | \n", 1893 | "
11 | \n", 1896 | "Sector 54 – Professional, Scientific and Techn... | \n", 1897 | "54 | \n", 1898 | "Professional, Scientific and Technical Services | \n", 1899 | "
12 | \n", 1902 | "Sector 55 – Management of Companies and Enterp... | \n", 1903 | "55 | \n", 1904 | "Management of Companies and Enterprises | \n", 1905 | "
13 | \n", 1908 | "Sector 56 – Administrative and Support, Waste ... | \n", 1909 | "56 | \n", 1910 | "Administrative and Support, Waste Management a... | \n", 1911 | "
14 | \n", 1914 | "Sector 61 – Educational Services | \n", 1915 | "61 | \n", 1916 | "Educational Services | \n", 1917 | "
15 | \n", 1920 | "Sector 62 – Health Care and Social Assistance | \n", 1921 | "62 | \n", 1922 | "Health Care and Social Assistance | \n", 1923 | "
16 | \n", 1926 | "Sector 71 – Arts, Entertainment and Recreation | \n", 1927 | "71 | \n", 1928 | "Arts, Entertainment and Recreation | \n", 1929 | "
17 | \n", 1932 | "Sector 72 – Accommodation and Food Services | \n", 1933 | "72 | \n", 1934 | "Accommodation and Food Services | \n", 1935 | "
18 | \n", 1938 | "Sector 81 – Other Services | \n", 1939 | "81 | \n", 1940 | "Other Services | \n", 1941 | "
19 | \n", 1944 | "Sector 92 – Public Administration | \n", 1945 | "92 | \n", 1946 | "Public Administration | \n", 1947 | "
20 | \n", 1950 | "Sector 31 – 33 – Manufacturing | \n", 1951 | "32 | \n", 1952 | "Manufacturing | \n", 1953 | "
21 | \n", 1956 | "Sector 31 – 33 – Manufacturing | \n", 1957 | "33 | \n", 1958 | "Manufacturing | \n", 1959 | "
22 | \n", 1962 | "Sector 44 - 45 – Retail Trade | \n", 1963 | "45 | \n", 1964 | "Retail Trade | \n", 1965 | "
23 | \n", 1968 | "Sector 48 - 49 – Transportation and Warehousing | \n", 1969 | "49 | \n", 1970 | "Transportation and Warehousing | \n", 1971 | "