using System; using System.Collections.Generic; using S = Science.Statistics.BasicStatistics; namespace ScienceTest.StatisticsTest.BasicStatisticsTest { public class FrequencyTableTest { public FrequencyTableTest() { } private string result; public string Result { get{return result;} } public void Compute() { S.FrequencyTable table = new S.FrequencyTable(); table.Add(4, 10); table.Add(6, 10); table.Add(17, 10); table.Add(16, 10); table.Add(8, 10); table.Add(9, 10); result += table.ToString(); } } } /* 4 10 6 10 17 10 16 10 8 10 9 10 */