A correlation resource allows you to compute advanced statistics for the fields in your dataset by applying various exploratory data analysis techniques to compare the distributions of the fields in your dataset against an objective_field. The complete and updated reference with all available parameters is in our documentation website.
Inheritance: Response
 /// <summary>
 /// Create a Correlation.
 /// </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<Correlation> CreateCorrelation(DataSet dataset, string name = null,
                                     Correlation.Arguments arguments = null)
 {
     arguments = arguments ?? new Correlation.Arguments();
     if (!string.IsNullOrWhiteSpace(name))
         arguments.Name = name;
     arguments.DataSet = dataset.Resource;
     return Create<Correlation>(arguments);
 }
 /// <summary>
 /// Create a correlation using supplied arguments.
 /// </summary>
 public Task<Correlation> CreateCorrelation(Correlation.Arguments arguments)
 {
     return Create<Correlation>(arguments);
 }