Skip to content

Commit

Permalink
fix: Update docs/built-in-models/encrypted_dataframe.md
Browse files Browse the repository at this point in the history
Co-authored-by: yuxizama <[email protected]>
  • Loading branch information
andrei-stoian-zama and yuxizama authored Jun 19, 2024
1 parent d404682 commit 9d642de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/built-in-models/encrypted_dataframe.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ df_decrypted = client.decrypt_to_pandas(df_encrypted)

Before encryption, the data is preprocessed. For example **string enums** first need to be mapped to integers, and floating point values must be quantized. By default, this mapping is done automatically. However, when two different clients encrypt their data separately, the automatic mappings may differ, possibly due to some missing values in one of the client's DataFrame. Thus the column can not be selected when merging encrypted DataFrames.

The Encrypted DataFrame supports user-defined mappings. These schemas a are defined as a dictionary where keys represent column names and values contain meta-data about the column. Supported column meta-data are:
The encrypted DataFrame supports user-defined mappings. These schemas are defined as a dictionary where keys represent column names and values contain meta-data about the column. Supported column meta-data are:

- string columns: mapping between string values and integers.
- float columns: the min/max range that the column values lie in.
Expand Down

0 comments on commit 9d642de

Please sign in to comment.