informatica.infacore.functions.dq_functions.DataQualityFunctions.get_country_iso_values

DataQualityFunctions.get_country_iso_values(src_data_object: DataObject, country_col_name: str)

Reads a country name as input and returns the full ISO country name, the ISO three-letter country code, and the ISO two-letter country code.

Parameters:
  • src_data_object (DataObject) – The object name for the source DataObject class.

  • country_col_name (str) – The column name that contains the country names.

Returns:

ISO data represented in columnar format.

Return type:

table

Example

>>> import informatica.infacore as ic
>>> dq_obj = ic.DataQualityFunctions()
>>> dq_obj.get_country_iso_values(src_data_obj, country_col_name)