Delete semantic-types.ipynb

This commit is contained in:
Shané Winner
2019-08-21 10:16:52 -07:00
committed by GitHub
parent 7620de2d91
commit bc81d2a5a7

View File

@@ -1,164 +0,0 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"![Impressions](https://PixelServer20190423114238.azurewebsites.net/api/impressions/MachineLearningNotebooks/work-with-data/dataprep/how-to-guides/semantic-types.png)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Semantic Types\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Some string values can be recognized as semantic types. For example, email addresses, US zip codes or IP addresses have specific formats that can be recognized, and then split in specific ways.\n",
"\n",
"When getting a DataProfile you can optionally ask to collect counts of values recognized as semantic types. [`Dataflow.get_profile()`](./data-profile.ipynb) executes the Dataflow, calculates profile information, and returns a newly constructed DataProfile. Semantic type counts can be included in the data profile by calling `get_profile` with the `include_stype_counts` argument set to true.\n",
"\n",
"The `stype_counts` property of the DataProfile will then include entries for columns where some semantic types were recognized for some values."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import azureml.dataprep as dprep\n",
"dflow = dprep.read_json(path='../data/json.json')\n",
"\n",
"profile = dflow.get_profile(include_stype_counts=True)\n",
"\n",
"print(\"row count: \" + str(profile.row_count))\n",
"profile.stype_counts"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To see all the supported semantic types, you can examine the `SType` enumeration. More types will be added over time."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"[t.name for t in dprep.SType]\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can filter the found semantic types down to just those where all non-empty values matched. The `DataProfile.stype_counts` gives a list of semantic type counts for each column, where at least some matches were found. Those lists are in desecending order of count, so here we consider only the first in each list, as that will be the one with the highest count of values that match.\n",
"\n",
"In this example, the column `inspections.business.postal_code` looks to be a US zip code."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"stypes_counts = profile.stype_counts\n",
"all_match = [\n",
" (column, stypes_counts[column][0].stype)\n",
" for column in stypes_counts\n",
" if profile.row_count - profile.columns[column].empty_count == stypes_counts[column][0].count\n",
"]\n",
"all_match"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can use semantic types to compute new columns. The new columns are the values split up into elements, or canonicalized.\n",
"\n",
"Here we reduce our data down to just the `postal` column so we can better see what a `split_stype` operation can do."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dflow_postal = dflow.keep_columns(['inspections.business.postal_code']).rename_columns({'inspections.business.postal_code': 'postal'})\n",
"dflow_postal.head(5)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"With `SType.ZipCode`, values are split into their basic five digit zip code and the plus-four add-on of the Zip+4 format."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dflow_split = dflow_postal.split_stype('postal', dprep.SType.ZIPCODE)\n",
"dflow_split.head(5)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`split_stype` also allows you to specify the fields of the stype to use and the name of the new columns. For example, if you just needed to strip the plus four from our zip codes, you could use this."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dflow_no_plus4 = dflow_postal.split_stype('postal', dprep.SType.ZIPCODE, ['zip'], ['zipNoPlus4'])\n",
"dflow_no_plus4.head(5)"
]
}
],
"metadata": {
"authors": [
{
"name": "sihhu"
}
],
"kernelspec": {
"display_name": "Python 3.6",
"language": "python",
"name": "python36"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.4"
},
"notice": "Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License."
},
"nbformat": 4,
"nbformat_minor": 2
}