aeorank 1.2.0 → 1.2.1
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 +13 -10
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -220,25 +220,28 @@ console.log(result.comparison.tied); // Criteria with equal scores
|
|
|
220
220
|
|
|
221
221
|
## Benchmark Dataset
|
|
222
222
|
|
|
223
|
-
The `data/` directory contains open
|
|
223
|
+
The `data/` directory contains the largest open dataset of AI visibility scores - **11,068 domains** scored across 23 criteria, including **4,313 Y Combinator startups** across 48 batches (W06-W26):
|
|
224
224
|
|
|
225
|
-
| File |
|
|
226
|
-
|
|
227
|
-
| [`data/benchmark.json`](data/benchmark.json) |
|
|
228
|
-
| [`data/yc.json`](data/yc.json) |
|
|
229
|
-
| [`data/sectors.json`](data/sectors.json) |
|
|
225
|
+
| File | Contents |
|
|
226
|
+
|------|----------|
|
|
227
|
+
| [`data/benchmark.json`](data/benchmark.json) | **11,068 domains** with per-criterion scores and sector/category |
|
|
228
|
+
| [`data/yc.json`](data/yc.json) | **4,313 Y Combinator startups** with company name, one-liner, founders, industry tags |
|
|
229
|
+
| [`data/sectors.json`](data/sectors.json) | **66 sectors** with pre-computed statistics (mean, median, p25, p75) |
|
|
230
230
|
|
|
231
231
|
Use the dataset for research, benchmarking, or building on top of AEORank:
|
|
232
232
|
|
|
233
233
|
```ts
|
|
234
|
-
import
|
|
234
|
+
import yc from './data/yc.json' assert { type: 'json' };
|
|
235
235
|
|
|
236
|
-
// Find
|
|
237
|
-
const
|
|
236
|
+
// Find top-scoring YC startups
|
|
237
|
+
const top = yc.entries.filter(e => e.score >= 80);
|
|
238
|
+
|
|
239
|
+
// Filter by batch
|
|
240
|
+
const w25 = yc.entries.filter(e => e.batch === 'w25');
|
|
238
241
|
|
|
239
242
|
// Get sector averages
|
|
240
243
|
import sectors from './data/sectors.json' assert { type: 'json' };
|
|
241
|
-
console.log(sectors.sectors.healthcare.mean);
|
|
244
|
+
console.log(sectors.sectors.healthcare.mean);
|
|
242
245
|
```
|
|
243
246
|
|
|
244
247
|
## Contributing
|
package/dist/cli.js
CHANGED