-
Notifications
You must be signed in to change notification settings - Fork 0
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
Technologies report #2
Comments
I'm not sure if all of that information is available already, or where it lives in that case. But the technology name and category names are available and in use already currently, eg.:
I don't think the description exists somewhere yet, but if the first aim is feature parity, then the main thing we need is name + categories right now. The similar technologies can probably be based on the category names, if there's no data on it yet? |
SELECT
client,
app AS technology,
# TODO
NULL AS description,
# CSV format
category,
# TODO: other technologies within category?
NULL AS similar_technologies,
origins
FROM
`httparchive.core_web_vitals.technologies`
WHERE
date = '2023-07-01' AND
geo = 'ALL' AND
rank = 'ALL'
ORDER BY
origins DESC |
@sarahfossheim how should we source the Also note that the |
@rviscomi, should we have any |
I think just |
I think for the first version something like you said can make sense: technologies with at least one category in common, sorted by amount of origins, and then pick the top 3 (or maybe top 5?). Or maybe an alternative could be:
Then technologies that have many categories in common will come up, even if they're a new or niche technology with not many origins. Which I think makes more sense when it comes to pinning down similar technologies. If any data gets returned along with the technology names (eg. amount of origins), then we also need to pass in the rank and geo, so that the data of the similar technologies is filtered by the same criteria as the data of the current technology. |
Example of how to consume this endpoint
|
@rviscomi @sarahfossheim, all the changes discussed are already deployed. New URL Documentation: https://github.com/HTTPArchive/tech-report-apis#get-technologies |
Hi @rviscomi, why is there a static date in the WHERE clause of 2023-07-01 for technologies and 2023-08-01 for categories? I think we said this should be the latest month instead? |
Yeah it should probably track the latest month. Is |
Could you describe the origin/source of this data?
Create a script to query this data from BQ transform and save it in Firestore.
The text was updated successfully, but these errors were encountered: