Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various changes #369

Merged
merged 2 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading