Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/benchmarks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
:description: Validation benchmarks comparing diff-diff against R packages (did, synthdid, fixest). Coefficient accuracy, standard error comparison, and performance metrics.
:keywords: difference-in-differences benchmark, DiD validation R, python econometrics accuracy, did package comparison

Benchmarks: Validation Against R Packages
=========================================
Benchmarks
==========

This document presents validation benchmarks comparing diff-diff against
established R packages for difference-in-differences analysis. As of v2.0.0,
Expand Down
12 changes: 4 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
sitemap_url_scheme = "{link}"

html_theme_options = {
"logo": {
"text": "diff-diff",
},
"icon_links": [
{
"name": "GitHub",
Expand All @@ -87,16 +90,9 @@
"icon": "fa-brands fa-python",
},
],
"navbar_end": ["theme-switcher", "navbar-icon-links"],
"navigation_depth": 4,
"show_toc_level": 2,
"use_edit_page_button": True,
}

html_context = {
"github_user": "igerber",
"github_repo": "diff-diff",
"github_version": "main",
"doc_path": "docs",
}

# -- Options for sphinxext-opengraph -----------------------------------------
Expand Down
20 changes: 10 additions & 10 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,24 @@ For development:
Quick Links
-----------

- :doc:`api/index` - Full API reference
- :doc:`quickstart` - Get started with basic examples
- :doc:`choosing_estimator` - Which estimator should I use?
- :doc:`troubleshooting` - Common issues and solutions
- :doc:`r_comparison` - Comparison with R packages
- :doc:`python_comparison` - Comparison with Python packages
- :doc:`benchmarks` - Performance benchmarks vs R packages
- :doc:`api/index` - Full API reference
- :doc:`benchmarks` - Validation benchmarks vs R

.. toctree::
:maxdepth: 2
:caption: API
:hidden:

api/index

.. toctree::
:maxdepth: 2
:caption: User Guide
:caption: Guide
:hidden:

quickstart
Expand All @@ -64,13 +71,6 @@ Quick Links
python_comparison
benchmarks

.. toctree::
:maxdepth: 2
:caption: API Reference
:hidden:

api/index

.. toctree::
:maxdepth: 1
:caption: Tutorials
Expand Down
4 changes: 2 additions & 2 deletions docs/python_comparison.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
:description: Compare diff-diff with other Python DiD libraries including pyfixest, causalimpact, and linearmodels. Feature matrix, API comparison, and migration guide.
:keywords: python DiD library comparison, pyfixest vs diff-diff, causalimpact alternative, python difference-in-differences packages

Comparison with Python Packages
================================
Python Comparison
=================

This guide compares diff-diff with other Python packages for DiD analysis,
helping users understand the landscape and choose the right tool.
Expand Down
4 changes: 2 additions & 2 deletions docs/r_comparison.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
:description: Compare diff-diff with R packages for DiD analysis. Migration guide from R did, fixest, synthdid, and HonestDiD to Python with side-by-side code examples.
:keywords: R did package python alternative, fixest python, synthdid python, R to python DiD, econometrics R vs python

Comparison with R Packages
==========================
R Comparison
============

This guide compares diff-diff with popular R packages for DiD analysis, helping
users familiar with R transition to Python.
Expand Down
Loading