We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: Currently queries of the form: (y given x = 1) - (y given x = 0) cannot be requested.
Reason: currently only a single "given" can be specified for each query (but queries of the above form require two givens i.e. x = 1 & x = 0)
Potential Solution: integrate "given" into "query" statement such that the above is expressed as: either: Y[X = 1 | A == 0] - Y[X = 1 | A == 0] or: Y[X = 1] - Y[X = 0] | X==1 & Y==1
Parsing needs to be updated to handle integrated queries
The text was updated successfully, but these errors were encountered:
till-tietz
No branches or pull requests
Problem: Currently queries of the form: (y given x = 1) - (y given x = 0) cannot be requested.
Reason: currently only a single "given" can be specified for each query (but queries of the above form require two givens i.e. x = 1 & x = 0)
Potential Solution: integrate "given" into "query" statement such that the above is expressed as:
either: Y[X = 1 | A == 0] - Y[X = 1 | A == 0]
or: Y[X = 1] - Y[X = 0] | X==1 & Y==1
Parsing needs to be updated to handle integrated queries
The text was updated successfully, but these errors were encountered: