You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CausalModel class is the first step in doWhy's causal process. At a minimum, it involves establishing the data set (a pandas dataframe), treatment (a column in the dataframe), outcome (a column in the dataframe) and a causal graph. There are multiple ways to specify a causal graph, but .gml is recommended, so we'll use that for now. There are tools (DAGitty) to help make the graph strings.
Learn the other keyword args one can pass to CausalModel to understand which might apply to our data/question. #103
The text was updated successfully, but these errors were encountered:
Implemented vanilla causal framework on a built-in doWhy data set. All built in data sets come with structural causal models already encoded. This implementation follows the starter notebook ConfoundingExample on the doWhy website. This starter notebook seemed most relevant as it uses regression and explores data looking for confounders. Documented nuances about the CausalModel class from exploring source code.
The CausalModel class is the first step in doWhy's causal process. At a minimum, it involves establishing the data set (a pandas dataframe), treatment (a column in the dataframe), outcome (a column in the dataframe) and a causal graph. There are multiple ways to specify a causal graph, but .gml is recommended, so we'll use that for now. There are tools (DAGitty) to help make the graph strings.
Learn the other keyword args one can pass to CausalModel to understand which might apply to our data/question.
#103
The text was updated successfully, but these errors were encountered: