@elaraai/east-py-datascience 1.0.3 → 1.0.5
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.
- package/README.md +10 -2
- package/dist/src/causal/causal.d.ts +1872 -0
- package/dist/src/causal/causal.d.ts.map +1 -0
- package/dist/src/causal/causal.js +593 -0
- package/dist/src/causal/causal.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ When using a git dependency in `pyproject.toml`:
|
|
|
54
54
|
| **ALNS** | `alns` | alns |
|
|
55
55
|
| **PyMC** | `pymc` | pymc, cloudpickle |
|
|
56
56
|
| **Simulation** | *(none)* | *(core only — numpy)* |
|
|
57
|
+
| **Causal** | `causal` | dowhy, econml, PyALE, pandas, matplotlib, scikit-learn, cloudpickle |
|
|
57
58
|
|
|
58
59
|
## Quick Start
|
|
59
60
|
|
|
@@ -120,6 +121,12 @@ const optimize = East.function([], MADS.Types.ResultType, $ => {
|
|
|
120
121
|
|--------|-------------|-----------|
|
|
121
122
|
| **PyMC** | Bayesian inference with PyMC | Bayesian linear regression, hierarchical models, multi-layer joint estimation, posterior analysis |
|
|
122
123
|
|
|
124
|
+
### Causal Inference
|
|
125
|
+
|
|
126
|
+
| Module | Description | Use Cases |
|
|
127
|
+
|--------|-------------|-----------|
|
|
128
|
+
| **Causal** | Causal inference with DoWhy, EconML, and PyALE | Backdoor-adjusted effect estimation, refutation tests, heterogeneous treatment effects (CATE), ALE dose-response curves |
|
|
129
|
+
|
|
123
130
|
### Simulation
|
|
124
131
|
|
|
125
132
|
| Module | Description | Use Cases |
|
|
@@ -187,8 +194,9 @@ See [LICENSE.md](LICENSE.md) for full details.
|
|
|
187
194
|
- [@elaraai/east-node-io](https://www.npmjs.com/package/@elaraai/east-node-io): SQLite, PostgreSQL, MySQL, MongoDB, Redis, S3, FTP, SFTP, XLSX, XML, compression
|
|
188
195
|
- [@elaraai/east-node-cli](https://www.npmjs.com/package/@elaraai/east-node-cli): CLI for running East IR programs in Node.js
|
|
189
196
|
|
|
190
|
-
- **[East C](https://github.com/elaraai/east-workspace/tree/main/libs/east-c)**: C11 native runtime for executing East IR.
|
|
191
|
-
-
|
|
197
|
+
- **[East C](https://github.com/elaraai/east-workspace/tree/main/libs/east-c)**: C11 native runtime for executing East IR. Distributed via npm (launcher + per-platform optional dependencies) and as tarballs on each GitHub Release.
|
|
198
|
+
- [@elaraai/east-c-cli](https://www.npmjs.com/package/@elaraai/east-c-cli): npm launcher — installs the matching native binary as an optional dependency
|
|
199
|
+
- `east-c`: Core runtime — type system, IR interpreter, builtins, serialization (Beast2, JSON, CSV, East text)
|
|
192
200
|
- `east-c-std`: Console, FileSystem, Fetch, Crypto, Time, Path, Random
|
|
193
201
|
- `east-c-cli`: CLI for running East IR programs natively
|
|
194
202
|
|