consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inchi_id = 2018
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 161927 | 161927 | 58098 58098 | 2018 | 5 | 0.386870440822052 |
| 302355 | 302355 | 102322 102322 | 2018 | 1 | 0.40919974508356 |
| 1655838 | 1655838 | 501726 501726 | 2018 | 2 | 0.411068736440932 |
CREATE TABLE [consensus_index] (
[inventory_id] integer,
[inchi_id] text,
[consensus_score] text,
[consensus_count] integer,
FOREIGN KEY (inventory_id) REFERENCES inventories(inventory_id),
FOREIGN KEY (inchi_id) REFERENCES substances(inchi_id)
);