sources
Data license: CC-BY
2 rows where datasetId = 6127 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
29531 | CRA Taulbee Survey (2022) via AI Index (2023) | { "link": "https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK", "retrievedDate": "2023-06-28", "additionalInfo": "\nThe CRA Taulbee Survey is the principal source of information on the enrollment, production, and employment of Ph.D.s in information, computer science and computer engineering (I, CS & CE) and in providing salary and demographic data for faculty in I, CS & CE in North America. Statistics given include gender and ethnicity breakdowns.", "dataPublishedBy": "CRA Taulbee Survey (2022) via AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023" } |
2023-12-14 12:01:20 | 2024-07-08 16:10:47 | Share CS students specialising in AI in US and Canada (AI Index, 2023) 6127 | The CRA Taulbee Survey is the principal source of information on the enrollment, production, and employment of Ph.D.s in information, computer science and computer engineering (I, CS & CE) and in providing salary and demographic data for faculty in I, CS & CE in North America. Statistics given include gender and ethnicity breakdowns. | https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK | CRA Taulbee Survey (2022) via AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023 |
28022 | CRA Taulbee Survey (2022) via AI Index (2023) | { "link": "https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK", "retrievedDate": "2023-06-28", "additionalInfo": "The CRA Taulbee Survey is the principal source of information on the enrollment, production, and employment of Ph.D.s in information, computer science and computer engineering (I, CS & CE) and in providing salary and demographic data for faculty in I, CS & CE in North America. Statistics given include gender and ethnicity breakdowns.", "dataPublishedBy": "CRA Taulbee Survey (2022) via AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023" } |
2023-07-14 19:49:03 | 2024-07-08 16:10:47 | Share CS students specialising in AI in US and Canada (AI Index, 2023) 6127 | The CRA Taulbee Survey is the principal source of information on the enrollment, production, and employment of Ph.D.s in information, computer science and computer engineering (I, CS & CE) and in providing salary and demographic data for faculty in I, CS & CE in North America. Statistics given include gender and ethnicity breakdowns. | https://drive.google.com/drive/folders/1ma9WZJzKreS8f2It1rMy_KkkbX6XwDOK | CRA Taulbee Survey (2022) via AI Index 2023 Annual Report, AI Index Steering Committee, Institute for Human-Centered AI, Stanford University, Stanford, CA, April 2023 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");