Suppose you’re on a game show, and you’re given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what’s behind the doors, opens another door, say No. 3, which has a goat. He then says to you, … Continue reading R Simulation – Monty Hall Problem
HDInsight – Provision a Hadoop Cluster on Azure
Creating a Hadoop cluster on Azure is easy, yet requires some steps. In this blog entry we provide a skeleton PowerShell script to get you started. Requirements To run this script, you need to have Azure PowerShell SDK installed on your machine. To check if it is already installed on your machine run the command: … Continue reading HDInsight – Provision a Hadoop Cluster on Azure
Azure PowerShell SDK
Before running any Azure PowerShell command you need to install the Azure PowerShell SDK on your machine. To check if you already have this installed run the command: PS C:\> Get-Module -ListAvailable Azure Directory: C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement ModuleType Version Name ExportedCommands ———- ——- —- —————- Manifest 1.0.1 Azure {Disable- AzureServiceProjectRemoteDesktop, Enable-AzureSer… … Continue reading Azure PowerShell SDK
Setting up CRM Online Connection on Sitecore XP
Important Notice: The document is build using Sitecore XP 8.1 Update 1 and the CRM package Dynamics CRM Campaign Integration for WFFM 22 rev 151027.zip. So you are setting up CRM connection in Sitecore using the latest package and wondering how to proceed or why things are not working out. Then this guide is … Continue reading Setting up CRM Online Connection on Sitecore XP
R Characters
In today’s blog we take a look at string in R. Strings in R are represented by character objects. Let’s keep Clounce in a variable: > name <- "Clounce" Now let’s print it on screen: > print(name) [1] "Clounce" Numbers can be converted to characters using the as.character function. Let’s look at an example: > … Continue reading R Characters