Does quitting smoking cause weight gain?
This example is reproduced from Chapter 12 of Causal Inference: What If (the book), by Miguel Hernan. The book is a great and thorough course on Causal Inference, and highly recommended for those who want to get deeply into it.

This case study uses data from the National Health and Nutrition Examination Survey Data Epidemiologic Follow-up Study (NHEFS). It attempts to accurately quantify the effect of smoking cessation on weight gain. In short, do people gain weight after giving up smoking?
We can see that despite some simplifications to make this tutorial easy, we obtain a result close to the reported value given in the book.
Download tutorial-3-nhefs.csv, then upload it via the Data page.
Select variable Quit Smoking? as the Treatment, and Change in Weight as the Outcome.
Causal Wizard automatically detects the data type of the Treatment column and adjusts the group editor to match. Since quit smoking is a boolean (True/False) column, click Treatment groups and confirm False is assigned to Control and True to Treated - this is the default.
This case study uses all the numerical variables in the dataset. Create the graph as shown in the picture below (nodes are automatically coloured during the Check process; verify the colours match after checking, to confirm you've added all the same edges).
Basically, every variable is treated as a "confounder" - a cause of both Treatment and Outcome.
In addition, there's one edge directly from Treatment Quit Smoking? to Outcome Change in Weight.

In the Findings section, you should see something like:
On Chapter 12, page 158 of "What If", an ATE of 3.4 kg is reported. This is well within the 95% confidence interval of our simplified model above (your exact numbers will vary slightly, since the notebook re-fits the model with a random held-out test split each run).
In the Refutation / validation section, you'll likely notice the placebo treatment test fails - perhaps due to dataset size and noise, but also perhaps due to simplified modelling. These validation tests are quite strict - note that the placebo treatment effect is much smaller than the real one, and quite close to zero even though not quite zero. Since this is a propensity-based estimator, you'll also see a Positivity check and Covariate balance (Love plot) section, worth reviewing to confirm the Treated and Control groups genuinely overlap.