DataFlow.GetProfile(Boolean, Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Requests the data profile which collects summary statistics on the full data produced by the Dataflow. A data profile can be very useful to understand the input data, identify anomalies and missing values, and verify that data preparation operations produced the desired result.
public System.Threading.Tasks.Task<System.Collections.Specialized.OrderedDictionary> GetProfile(bool include_stype_counts = false, long number_of_histogram_bins = 10);
member this.GetProfile : bool * int64 -> System.Threading.Tasks.Task<System.Collections.Specialized.OrderedDictionary>
Public Function GetProfile (Optional include_stype_counts As Boolean = false, Optional number_of_histogram_bins As Long = 10) As Task(Of OrderedDictionary)
Parameters
- include_stype_counts
- Boolean
Whether to include checking if values look like some well known semantic types of information. For Example, "email address". Turning this on will impact performance.
- number_of_histogram_bins
- Int64
Number of bins in a histogram. If not specified will be set to 10.
Returns
an OrderedDictionary object containing column ProfileResult.