We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. Cites per million in panel in projects mixup currencies.
Describe the solution you'd like Cites per million in projects can often be converted to a common currency.
# tool: scholia SELECT (?cites_per_million / ?euro_price AS ?cites_per_million_euro) ?cites_per_million ?currency ?currencyLabel ?citations ?budget ?short_name ?project ?projectLabel WITH { SELECT (COUNT(?citing_work) / ?budget * 1000000 AS ?cites_per_million) (COUNT(?citing_work) AS ?citations) ?budget ?currency ?project WHERE { ?project p:P2769 / psv:P2769 ?budget_value ; wdt:P17 wd:Q35 . ?budget_value wikibase:quantityAmount ?budget . ?budget_value wikibase:quantityUnit ?currency . ?work wdt:P859 ?project . ?citing_work wdt:P2860 ?work . } GROUP BY ?project ?budget ?currency } AS %results WHERE { INCLUDE %results OPTIONAL { ?project wdt:P1813 ?short_name } OPTIONAL { ?currency p:P2284 / psv:P2284 ?price_value . ?price_value wikibase:quantityAmount ?euro_price ; wikibase:quantityUnit wd:Q4916 . } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" . } } ORDER BY DESC(?cites_per_million_euro) DESC(?cites_per_million)
Note there may be multiple prices.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
Cites per million in panel in projects mixup currencies.
Describe the solution you'd like
Cites per million in projects can often be converted to a common currency.
Note there may be multiple prices.
The text was updated successfully, but these errors were encountered: