From d43be006cc1fc36cdf07c6db94571bfa2ed3394f Mon Sep 17 00:00:00 2001 From: fria <138676274+friadev@users.noreply.github.com> Date: Mon, 14 Jul 2025 08:25:08 -0500 Subject: [PATCH] try to fix table --- blog/posts/differential-privacy.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/blog/posts/differential-privacy.md b/blog/posts/differential-privacy.md index d8fe6b635..4800a40a7 100644 --- a/blog/posts/differential-privacy.md +++ b/blog/posts/differential-privacy.md @@ -56,18 +56,12 @@ One of the earliest ideas for anonymizing data was [randomized response](https:/ For certain questions like "have you committed tax fraud?", respondents will likely be hesitant to answer truthfully. The solution? Have the respondent flip a coin. If the coin is tails, answer yes. If the coin lands on heads, answer truthfully. | Respondent | Answer | Coin Flip (not included in the actual dataset just here for illustration) | -| --- | --- | +| --- | --- | --- | | 1 | Yes | Tails (Answer Yes) | | 2 | No | Heads (Answer Truthfully) | -| 3 | Yes | Heads (Answer Truthfully) | +| 3 | Yes | Tails (Answer Yes) | | 4 | Yes | Tails (Answer Yes) | -| 5 | No | Heads (Answer Truthfully) | - -| Method | Description | -| ----------- | ------------------------------------ | -| `GET` | :material-check: Fetch resource | -| `PUT` | :material-check-all: Update resource | -| `DELETE` | :material-close: Delete resource | +| 5| No | Heads (Answer Truthfully) | Because we know the exact probability that a "Yes" answer is fake, 50%, we can remove it and give a rough estimate of how many respondents answered "Yes" truthfully.