Skip to content

Commit

Permalink
Merge pull request #476 from georgetown-cset/za-update-7-3
Browse files Browse the repository at this point in the history
wording change
  • Loading branch information
brianlove authored Jul 9, 2024
2 parents 365bf6d + 6786f17 commit e928537
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions web/gui-v2/src/components/DetailViewWorkforce.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ const DetailViewWorkforce = ({
key: 'tt1_jobs',
description: (
<span>
According to our data, {data.name} currently employs about {commas(data.other_metrics.tt1_jobs.total)} Tech Tier 1 workers
According to our data, {data.name} currently employs about {commas(data.other_metrics.tt1_jobs.total)} Tech Team 1 workers
(#{data.other_metrics.tt1_jobs.rank} rank in PARAT
{data.groups.sp500 && <>, #{data.other_metrics.tt1_jobs.sp500_rank} in the S&P500</>}).
<em>Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. Recent hires may be omitted. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></em>
<em>Tech Team 1 workers include anyone with technical skills and a reasonable probability of working with AI. Recent hires may be omitted. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></em>
</span>
),
},
Expand Down
2 changes: 1 addition & 1 deletion web/gui-v2/src/components/ListView.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { exportsForTestingOnly } from './ListViewTable';

const { extractCurrentFilters, filterRow } = exportsForTestingOnly;

const INITIAL_COLUMNS = ['Company', 'Country', 'AI publications', 'AI patents', 'AI jobs', 'Tech Tier 1 jobs'];
const INITIAL_COLUMNS = ['Company', 'Country', 'AI publications', 'AI patents', 'AI jobs', 'Tech Team 1 jobs'];
const REMOVED_COLUMN = 'AI publications';

describe("ListView", () => {
Expand Down
2 changes: 1 addition & 1 deletion web/gui-v2/src/static_data/table_columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ const columnDefinitions = [
initialCol: true,
},
{
title: "Tech Tier 1 jobs",
title: "Tech Team 1 jobs",
key: "tt1_jobs",
aggregateType: "median",
category: "workforce",
Expand Down
2 changes: 1 addition & 1 deletion web/gui-v2/src/static_data/tooltips.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const tooltips = {
telecom_patents: <>The number of AI-related patents the company filed over the past 10 years that were relevant to the listed use case. Some recent patents <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#limitations-5">may be omitted.</ExternalLink> <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#patents">Read more &gt;&gt;</ExternalLink></>,
transport_patents: <>The number of AI-related patents the company filed over the past 10 years that were relevant to the listed use case. Some recent patents <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#limitations-5">may be omitted.</ExternalLink> <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#patents">Read more &gt;&gt;</ExternalLink> </>,
ai_jobs: <>The number of AI workers employed by the company as of the last data update (recent hires may be omitted). AI workers in PARAT include anyone a high probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></>,
tt1_jobs: <>The number of known Tech Tier 1 workers employed by the company as of the last data update (recent hires may be omitted). Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></>,
tt1_jobs: <>The number of known Tech Team 1 workers employed by the company as of the last data update (recent hires may be omitted). Tech Team 1 workers include anyone with technical skills and a reasonable probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></>,
},
groupExplanations: {
sp500: (
Expand Down
2 changes: 1 addition & 1 deletion web/scripts/retrieve_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
("Patents: AI applications and techniques: Robotics", lambda row: row["patents"]["Robotics"]["total"]),
("Patents: AI applications and techniques: Speech processing", lambda row: row["patents"]["Speech_Processing"]["total"]),
("Workforce: AI workers", lambda row: row["other_metrics"]["ai_jobs"]["total"]),
("Workforce: Tech Tier 1 workers", lambda row: row["other_metrics"]["tt1_jobs"]["total"]),
("Workforce: Tech Team 1 workers", lambda row: row["other_metrics"]["tt1_jobs"]["total"]),
])

### END CONSTANTS ###
Expand Down

0 comments on commit e928537

Please sign in to comment.