diff --git a/README.rst b/README.rst
index 7c3d1e04c1..44582e053a 100755
--- a/README.rst
+++ b/README.rst
@@ -28,8 +28,8 @@
- DoWhy is part of the `PyWhy Ecosystem `_. For more tools and libraries related to causality, checkout the `PyWhy GitHub organization `_!
- For any questions, comments, or discussions about specific use cases, join our community on `Discord `_ (|discord|_)
- Jump right into some case studies:
- - Effect estimation: `Hotel booking cancellations `_ | `Effect of customer loyalty programs `_ | `Optimizing article headlines `_ | `Effect of home visits on infant health (IHDP) `_ | `Causes of customer churn/attrition `_
- - Root cause analysis and explanations: `Root Cause Analysis with DoWhy, an Open Source Python Library for Causal Machine Learning `_ | `Finding the Root Cause of Elevated Latencies in a Microservice Architecture `_ | `Finding Root Causes of Changes in a Supply Chain `_
+ - Effect estimation: `Hotel booking cancellations `_ | `Effect of customer loyalty programs `_ | `Optimizing article headlines `_ | `Effect of home visits on infant health (IHDP) `_ | `Causes of customer churn/attrition `_
+ - Root cause analysis and explanations: `Causal attribution and root-cause analysis of an online shop `_ | `Finding the Root Cause of Elevated Latencies in a Microservice Architecture `_ | `Finding Root Causes of Changes in a Supply Chain `_
For more example notebooks, see `here! `_
@@ -174,9 +174,9 @@ estimate (if any). Here's a sample output of the linear regression estimator:
.. image:: https://raw.githubusercontent.com/py-why/dowhy/main/docs/images/regression_output.png
:width: 80%
-For a full code example, check out the `Getting Started with DoWhy `_ notebook.
+For a full code example, check out the `Getting Started with DoWhy `_ notebook.
-You can also use Conditional Average Treatment Effect (CATE) estimation methods from `EconML `_, as shown in the `Conditional Treatment Effects `_ notebook. Here's a code snippet.
+You can also use Conditional Average Treatment Effect (CATE) estimation methods from `EconML `_, as shown in the `Conditional Treatment Effects `_ notebook. Here's a code snippet.
.. code:: python
@@ -239,7 +239,7 @@ lines of code:
# Or sampling from an interventional distribution. Here, under the intervention do(Y := 2).
samples = gcm.interventional_samples(causal_model, interventions={'Y': lambda y: 2}, num_samples_to_draw=100)
-The GCM framework offers many more features beyond these examples. For a full code example, check out the `Online Shop example notebook `_.
+The GCM framework offers many more features beyond these examples. For a full code example, check out the `Online Shop example notebook `_.
For more functionalities, example applications of DoWhy and details about the outputs, see the `User Guide `_ or
checkout `Jupyter notebooks `_.