Skip to content

Commit

Permalink
Merge pull request #369 from georgetown-cset/za-updates-5-24
Browse files Browse the repository at this point in the history
Various changes
  • Loading branch information
brianlove authored Jun 4, 2024
2 parents 7dc05e9 + e384d10 commit a3cafce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions web/gui-v2/src/components/DetailViewPatents.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ const DetailViewPatents = ({
{
key: "ai-focused-percent",
stat: <>{aiPatentPercent}{totalPatents > 0 && "%"}</>,
text: <>of {data.name}'s total patents filed were AI-related</>,
text: <>of {data.name}'s filed patents were AI-related</>,
},
];

const patentTableColumns = [
{ display_name: "Subfield", key: "subfield" },
{ display_name: "Patent applications", key: "patents" },
{ display_name: "Patents filed", key: "patents" },
{
display_name: (
<>
Expand Down Expand Up @@ -207,22 +207,22 @@ const DetailViewPatents = ({
css={styles.section}
data={patentApplicationAreas}
id="top-patent-applications"
title={<>Top application areas across {data.name}'s AI filed patents</>}
title={<>Top AI application areas across {data.name}'s filed patents</>}
/>

<TableSection
columns={patentTableColumns}
css={styles.section}
data={patentIndustryAreas}
id="top-patent-industries"
title={<>Top industry areas across {data.name}'s AI filed patents</>}
title={<>Top industries and use cases across {data.name}'s filed AI patents</>}
/>

<TrendsChart
css={styles.section}
data={[
[
`${PATENT_DROPDOWN_OPTIONS.find(e => e.val === aiSubfield)?.text} patents at ${data.name}`,
`${PATENT_DROPDOWN_OPTIONS.find(e => e.val === aiSubfield)?.text} patents filed by ${data.name}`,
data.patents[aiSubfield].counts
],
data.groups.sp500 && [
Expand Down
6 changes: 3 additions & 3 deletions web/gui-v2/src/components/DetailViewPublications.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const DetailViewPublications = ({
{
key: "highly-cited",
stat: <>{commas(data.articles.highly_cited_ai_pubs.total)}</>,
text: <>highly-cited articles (#{commas(data.articles.highly_cited_ai_pubs.rank)} in PARAT{data.groups.sp500 && <>, #{commas(data.articles.highly_cited_ai_pubs.sp500_rank)} in the S&P 500</>})</>,
text: <>highly cited articles (#{commas(data.articles.highly_cited_ai_pubs.rank)} in PARAT{data.groups.sp500 && <>, #{commas(data.articles.highly_cited_ai_pubs.sp500_rank)} in the S&P 500</>})</>,
},
{
key: "ai-research-growth",
Expand Down Expand Up @@ -148,7 +148,7 @@ const DetailViewPublications = ({
css={styles.section}
data={[
[
`AI research at ${data.name}: ${aiSubfieldOptions.find(e => e.val === aiSubfield)?.text}`,
`Research publications by ${data.name}: ${aiSubfieldOptions.find(e => e.val === aiSubfield)?.text}`,
data.articles[aiSubfield].counts
],
data.groups.sp500 && [
Expand Down Expand Up @@ -183,7 +183,7 @@ const DetailViewPublications = ({
css={styles.section}
data={[
[
`AI top conference publications at ${data.name}`,
`${data.name} publications at top AI research conferences`,
data.articles.ai_pubs_top_conf.counts
],
data.groups.sp500 && [
Expand Down

0 comments on commit a3cafce

Please sign in to comment.