A statistical test resource automatically runs some advanced statistical tests on the numeric fields of a dataset. The goal of these tests is to check whether the values of individual fields or differ from some distribution patterns. Statistical test are useful in tasks such as fraud, normality, or outlier detection. The complete and updated reference with all available parameters is in our documentation website.
Inheritance: Response
 /// <summary>
 /// Create a StatisticalTest.
 /// </summary>
 /// <param name="dataset">A DataSet instance</param>
 /// <param name="name">The name you want to give to the new correlation. </param>
 /// <param name="arguments">Other extra parameters.</param>
 public Task<StatisticalTest> CreateStatisticalTest(DataSet dataset, string name = null,
                                     StatisticalTest.Arguments arguments = null)
 {
     arguments = arguments ?? new StatisticalTest.Arguments();
     if (!string.IsNullOrWhiteSpace(name))
         arguments.Name = name;
     arguments.DataSet = dataset.Resource;
     return Create<StatisticalTest>(arguments);
 }
 /// <summary>
 /// Create a statisticalTest using supplied arguments.
 /// </summary>
 public Task<StatisticalTest> CreateStatisticalTest(StatisticalTest.Arguments arguments)
 {
     return Create<StatisticalTest>(arguments);
 }