diffix / explorer

Tool to automatically explore and generate stats on data anonymized using Diffix
MIT License
2 stars 1 forks source link

Daniel/multi column fixes #344

Closed dandanlen closed 3 years ago

dandanlen commented 3 years ago

Fixes a few minor issues.

And one not-so-minor issue:

Solution:

This has the downside that if there are more than 31 useful columns in a table, they will not be considered for correlation analysis. Hopefully this is rare enough as not to be a major issue. An exhaustive fix for this issue involves breaking the correlation analysis queries up into sub-queries so that each sub-query has no more than 31 columns, and then recombining the results for the correlation analysis (probability matrices). I'll create an issue for this for future reference.

Fixes #342 Fixes #346