Raman Prasad
Raman Prasad
Use the GitHub code of conduct template/instructions - Github instructions: https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-code-of-conduct-to-your-project - OpenDP, current code: https://opendp.org/code-conduct --- - github default for contributors: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
To discuss - Are repositories within the opendp org, other than the library, considered as part of the commons? - How can we "mark/label" these repositories--perhaps a badge? - Where...
Include examples of using Polars for sums, means, groupby, and quantiles
- FAQs/Examples for common issues that arise when discussing DP - e.g. Think demographer interviews done by @mccalluc - Next step: Discuss/create focused issues which will involve docs + code...
Previous release notes: https://drive.google.com/drive/folders/1rOR1-xPxjXfzQKE4yLlVUCa0DlCZjYNP
from @mccalluc ## Problem Reference: - https://github.com/opendp/opendp/pull/1465/files#diff-d4d89fbd8d4c766e30502bed20068b70616b587d73d472f6eabb6da6967bfb03R22 ```Python @pytest.mark.xfail(raises=TypeError) def test_int_data_laplace_param(): # Currently fails with: # TypeError: inferred type is i32, expected f64. See https://github.com/opendp/opendp/discussions/298 # Possible resolution: # Explicit...
Not fully scoped. Will need additional issues re: examples, etc.
[copied from PR] Currently in Polars, Measurements emit LazyFrames. LazyFrames can be repeatedly executed, and each time it is executed, the privacy loss increases (but is not tracked anywhere). This...
Create a notebook similar to the “[Example Data Analysis](https://docs.opendp.org/en/stable/examples/pums-data-analysis.html)" notebook but using the Context API. More details may be found here: - https://docs.google.com/document/d/1Uvjfo5-qBmWvOdk60NhTqf1j077oD_WzcL9tx40U-rQ/edit
## Problem - If `epsilon` is specified as an integer (`1`) instead of a float (`1.`, `1.0`, etc), then a type error is thrown. - The same occurs for `delta`--an...