/// <summary>
    /// Run the calculation the probability for each.
    /// </summary>
    private void CalculateProbabilities()
    {
        var rowTotals = csvManager.GetRowTotals();

        for (int i = 0; i < rowTotals.Count; i++)
        {
            var total = rowTotals[i];
            csvManager.SetProbabilityValue(i, total);
        }
    }