diff --git a/pages/R/customerclustering/step-2.md b/pages/R/customerclustering/step-2.md index 2344fcc..328b6cd 100644 --- a/pages/R/customerclustering/step-2.md +++ b/pages/R/customerclustering/step-2.md @@ -23,7 +23,6 @@ The dataset used in this tutorial is hosted in several SQL Server tables.The tab For example in the folder where SQL Server is installed. Sample path: C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup - 2. Once you have the file saved, open SSMS and a new query window to run the following commands to restore the DB. Make sure to modify the file paths and server name in the script. @@ -214,7 +213,7 @@ Let's try something else and see if we can get some more insight from that. ## Step 2.6 Analyze cluster means -The clust object contains the results from our Kmeans clustering. We are going to look at some mean values. +The `clust` object contains the results from our Kmeans clustering. We are going to look at some mean values. ```r #Look at the clustering details and analyze results @@ -256,7 +255,7 @@ Just to refresh our memory, here are the definitions of our variables: Some examples of what the mean values tell us? * Well, cluster 1 (the largest cluster) seems to be a group of customers that are not active. All values are zero. -*And cluster 3 seems to be a group that stands out in terms of return behaviour. +* And cluster 3 seems to be a group that stands out in terms of return behaviour. Data mining using Kmeans often requires further analysis of the results, and further steps to better understand each cluster, but it provides some very good leads. Cluster 1 is a set of customers who are clearly not active. Perhaps we can target marketing efforts towards this group to trigger an interest for purchases? diff --git a/pages/python/customerclustering/step-1.md b/pages/python/customerclustering/step-1.md index fe0b5dd..f6b3e30 100644 --- a/pages/python/customerclustering/step-1.md +++ b/pages/python/customerclustering/step-1.md @@ -45,18 +45,18 @@ To import a report in SSMS, right click on Server Objects in the SSMS Object Exp ## Step 1.4 Install and configure your Python development environment 1.You need to install a Python IDE. Here are some suggestions: -*Python Tools for Visual Studio (PTVS) [Download](https://microsoft.github.io/PTVS) +* Python Tools for Visual Studio (PTVS) [Download](https://microsoft.github.io/PTVS) -*VS Code [(download)](https://code.visualstudio.com/download) with the [Python Extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and the [mssql extension](https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql) +* VS Code [(download)](https://code.visualstudio.com/download) with the [Python Extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and the [mssql extension](https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql) -*PyCharm [Download](https://www.jetbrains.com/pycharm/) +* PyCharm [Download](https://www.jetbrains.com/pycharm/) ## Step 1.5 Install remote Python client libraries **Note!!! To be able to use some of the functions in this tutorial, you need to have the revoscalepy package.** -Follow instructions here to learn how you can install Python client libaries for remote execution against SQL Server ML Services: +Follow instructions here to learn how you can install Python client libraries for remote execution against SQL Server ML Services: [How to install Python client libraries](]https://docs.microsoft.com/en-us/machine-learning-server/install/python-libraries-interpreter)