diffindiff 2.3.3__tar.gz → 2.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {diffindiff-2.3.3 → diffindiff-2.3.4}/PKG-INFO +5 -5
- {diffindiff-2.3.3 → diffindiff-2.3.4}/README.md +4 -4
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/config.py +3 -3
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/diddata.py +2 -3
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff.egg-info/PKG-INFO +5 -5
- {diffindiff-2.3.3 → diffindiff-2.3.4}/setup.py +1 -1
- {diffindiff-2.3.3 → diffindiff-2.3.4}/MANIFEST.in +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/__init__.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/didanalysis.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/didanalysis_helper.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/didtools.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/tests/__init__.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/tests/data/Corona_Hesse.xlsx +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/tests/data/counties_DE.csv +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/tests/data/curfew_DE.csv +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff/tests/tests_diffindiff.py +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff.egg-info/SOURCES.txt +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff.egg-info/dependency_links.txt +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff.egg-info/requires.txt +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/diffindiff.egg-info/top_level.txt +0 -0
- {diffindiff-2.3.3 → diffindiff-2.3.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: diffindiff
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: diffindiff: Python library for convenient Difference-in-Differences analyses
|
|
5
5
|
Author: Thomas Wieland
|
|
6
6
|
Author-email: geowieland@googlemail.com
|
|
@@ -27,7 +27,7 @@ Thomas Wieland [ORCID](https://orcid.org/0000-0001-5168-9846) [EMail](mailto:geo
|
|
|
27
27
|
|
|
28
28
|
If you use this software, please cite:
|
|
29
29
|
|
|
30
|
-
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.
|
|
30
|
+
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.4) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.18656820
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
## Installation
|
|
@@ -173,7 +173,7 @@ See the /tests directory for usage examples of most of the included functions.
|
|
|
173
173
|
This software was developed without the use of AI-generated code. The Continue Agent in Microsoft Visual Studio Code using the GPT-5 mini model (by OpenAI) was used solely to assist in drafting and refining docstrings for documentation. The corresponding guidelines and constraints defined by the author are documented in `AGENTS-docstrings.md` in the [public GitHub repository](https://github.com/geowieland/diffindiff_official).
|
|
174
174
|
|
|
175
175
|
|
|
176
|
-
## What's new (v2.3.
|
|
176
|
+
## What's new (v2.3.4)
|
|
177
177
|
|
|
178
|
-
-
|
|
179
|
-
-
|
|
178
|
+
- Bugfixes:
|
|
179
|
+
- Fixed bug in DiffData instance creation in diddata.merge_data()
|
|
@@ -19,7 +19,7 @@ Thomas Wieland [ORCID](https://orcid.org/0000-0001-5168-9846) [EMail](mailto:geo
|
|
|
19
19
|
|
|
20
20
|
If you use this software, please cite:
|
|
21
21
|
|
|
22
|
-
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.
|
|
22
|
+
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.4) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.18656820
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
## Installation
|
|
@@ -165,7 +165,7 @@ See the /tests directory for usage examples of most of the included functions.
|
|
|
165
165
|
This software was developed without the use of AI-generated code. The Continue Agent in Microsoft Visual Studio Code using the GPT-5 mini model (by OpenAI) was used solely to assist in drafting and refining docstrings for documentation. The corresponding guidelines and constraints defined by the author are documented in `AGENTS-docstrings.md` in the [public GitHub repository](https://github.com/geowieland/diffindiff_official).
|
|
166
166
|
|
|
167
167
|
|
|
168
|
-
## What's new (v2.3.
|
|
168
|
+
## What's new (v2.3.4)
|
|
169
169
|
|
|
170
|
-
-
|
|
171
|
-
-
|
|
170
|
+
- Bugfixes:
|
|
171
|
+
- Fixed bug in DiffData instance creation in diddata.merge_data()
|
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
# Author: Thomas Wieland
|
|
5
5
|
# ORCID: 0000-0001-5168-9846
|
|
6
6
|
# mail: geowieland@googlemail.com
|
|
7
|
-
# Version: 1.0.
|
|
8
|
-
# Last update: 2026-03-
|
|
7
|
+
# Version: 1.0.12
|
|
8
|
+
# Last update: 2026-03-14 11:28
|
|
9
9
|
# Copyright (c) 2025-2026 Thomas Wieland
|
|
10
10
|
#-----------------------------------------------------------------------
|
|
11
11
|
|
|
12
12
|
# Basic config:
|
|
13
13
|
|
|
14
14
|
PACKAGE_NAME = "diffindiff"
|
|
15
|
-
PACKAGE_VERSION = "2.3.
|
|
15
|
+
PACKAGE_VERSION = "2.3.4"
|
|
16
16
|
|
|
17
17
|
VERBOSE = False
|
|
18
18
|
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
# Author: Thomas Wieland
|
|
5
5
|
# ORCID: 0000-0001-5168-9846
|
|
6
6
|
# mail: geowieland@googlemail.com
|
|
7
|
-
# Version: 2.2.
|
|
8
|
-
# Last update: 2026-03-
|
|
7
|
+
# Version: 2.2.4
|
|
8
|
+
# Last update: 2026-03-14 11:28
|
|
9
9
|
# Copyright (c) 2024-2026 Thomas Wieland
|
|
10
10
|
#-----------------------------------------------------------------------
|
|
11
11
|
|
|
@@ -2168,7 +2168,6 @@ def merge_data(
|
|
|
2168
2168
|
unit_time_col_original,
|
|
2169
2169
|
[],
|
|
2170
2170
|
treatment_cols,
|
|
2171
|
-
{},
|
|
2172
2171
|
timestamp
|
|
2173
2172
|
)
|
|
2174
2173
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: diffindiff
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: diffindiff: Python library for convenient Difference-in-Differences analyses
|
|
5
5
|
Author: Thomas Wieland
|
|
6
6
|
Author-email: geowieland@googlemail.com
|
|
@@ -27,7 +27,7 @@ Thomas Wieland [ORCID](https://orcid.org/0000-0001-5168-9846) [EMail](mailto:geo
|
|
|
27
27
|
|
|
28
28
|
If you use this software, please cite:
|
|
29
29
|
|
|
30
|
-
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.
|
|
30
|
+
Wieland, T. (2026). diffindiff: A Python library for convenient difference-in-differences analyses (Version 2.3.4) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.18656820
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
## Installation
|
|
@@ -173,7 +173,7 @@ See the /tests directory for usage examples of most of the included functions.
|
|
|
173
173
|
This software was developed without the use of AI-generated code. The Continue Agent in Microsoft Visual Studio Code using the GPT-5 mini model (by OpenAI) was used solely to assist in drafting and refining docstrings for documentation. The corresponding guidelines and constraints defined by the author are documented in `AGENTS-docstrings.md` in the [public GitHub repository](https://github.com/geowieland/diffindiff_official).
|
|
174
174
|
|
|
175
175
|
|
|
176
|
-
## What's new (v2.3.
|
|
176
|
+
## What's new (v2.3.4)
|
|
177
177
|
|
|
178
|
-
-
|
|
179
|
-
-
|
|
178
|
+
- Bugfixes:
|
|
179
|
+
- Fixed bug in DiffData instance creation in diddata.merge_data()
|
|
@@ -7,7 +7,7 @@ def read_README():
|
|
|
7
7
|
|
|
8
8
|
setup(
|
|
9
9
|
name='diffindiff',
|
|
10
|
-
version='2.3.
|
|
10
|
+
version='2.3.4',
|
|
11
11
|
description='diffindiff: Python library for convenient Difference-in-Differences analyses',
|
|
12
12
|
packages=find_packages(include=["diffindiff", "diffindiff.tests"]),
|
|
13
13
|
include_package_data=True,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|