Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

IntegerFieldInfo defines output for any integer type field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo

Returns a new instance of GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.



1146
1147
1148
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1146

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#averageFloat

The average of non-null values of integer field in the sampled data. Return NaN, if the field has a NaN. Optional if zero non-null rows. Corresponds to the JSON property average

Returns:

  • (Float)


1113
1114
1115
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1113

def average
  @average
end

#maxFixnum

The maximum value of an integer field in the sampled data. Return NaN, if the field has a NaN. Optional if zero non-null rows. Corresponds to the JSON property max

Returns:

  • (Fixnum)


1119
1120
1121
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1119

def max
  @max
end

#minFixnum

The minimum value of an integer field in the sampled data. Return NaN, if the field has a NaN. Optional if zero non-null rows. Corresponds to the JSON property min

Returns:

  • (Fixnum)


1125
1126
1127
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1125

def min
  @min
end

#quartilesArray<Fixnum>

A quartile divide the number of data points into four parts, or quarters, of more-or-less equal size. Three main quartiles used are: The first quartile (Q1) splits off the lowest 25% of data from the highest 75%. It is also known as the lower or 25th empirical quartile, as 25% of the data is below this point. The second quartile (Q2) is the median of a data set. So, 50% of the data lies below this point. The third quartile (Q3) splits off the highest 25% of data from the lowest 75%. It is known as the upper or 75th empirical quartile, as 75% of the data lies below this point. So, here the quartiles is provided as an ordered list of quartile values, occurring in order Q1, median, Q3. Corresponds to the JSON property quartiles

Returns:

  • (Array<Fixnum>)


1138
1139
1140
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1138

def quartiles
  @quartiles
end

#standard_deviationFloat

The standard deviation of non-null of integer field in the sampled data. Return NaN, if the field has a NaN. Optional if zero non-null rows. Corresponds to the JSON property standardDeviation

Returns:

  • (Float)


1144
1145
1146
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1144

def standard_deviation
  @standard_deviation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1151
1152
1153
1154
1155
1156
1157
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1151

def update!(**args)
  @average = args[:average] if args.key?(:average)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
  @quartiles = args[:quartiles] if args.key?(:quartiles)
  @standard_deviation = args[:standard_deviation] if args.key?(:standard_deviation)
end