Anonymize data

From QPR ProcessAnalyzer Wiki
Revision as of 16:01, 13 December 2022 by Ollvihe (talk | contribs) (Created page with "Data can be anonymized using scripts with the following methods: * When data is extracted from a source system, the data is immediately anonymized and the anonymized data is s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Data can be anonymized using scripts with the following methods:

  • When data is extracted from a source system, the data is immediately anonymized and the anonymized data is stored to datatables.
  • Data in the datatables are analymized and stored to other datatables, where the anonymized data can be exported or visualized in dashboards.

If the original data is stored in the system, make sure that users who are only allowed to see the anonymized data, don't have access to the original data.

Following example anonymizes selected columns in a datatable and writes them to another datatable.

let anonymizationDict = #{};
function AnonymizeColumn(columnName, oldValue) {
  let dict
  if (!anonymizationDict.ContainsKey(columnName)) {
    dict = #{};
    anonymizationDict.Set(columnName, dict);
  }
  else {
    dict = anonymizationDict[columnName];
  }
  if (!dict.ContainsKey(oldValue)) {
    dict.Set(oldValue, `${columnName}: ${dict.Count}`);
  }
  return dict[oldValue];
}

function Anonymize(df, cols) {
  for (let i = 0; i < CountTop(cols); ++i) {
    let col = cols[i];
    df = df.SetColumns([
      `${col}_New`: () => AnonymizeColumn(col, Column(col))
    ]);
  }
}
let sourceData = DataTableById(1).SqlDataFrame.Collect();
let anonymizedData = Anonymize(sourceData, ["Created By", "Vendor", "Purchasing Org", "Purchasing Group"])
DataTableById(2).Import(anonymizedData);