Flutter-Buddies / baby-namer

An app to allow families easily name babies on the way
2 stars 2 forks source link

Find baby name dataset #1

Open joeyda3rd opened 3 years ago

joeyda3rd commented 3 years ago

Hopefully something with a decent size but also some additional information. Things like popularity metrics, gender, origin, meaning, etc. are the most important.

ragged commented 3 years ago

Quick google revealed dozens of csvs, dbs, apis. but everything different.

Well for the MVP it might be enough to catch like 100 boy/girl names, and put them into the app, but for all the details you mentioned, especially popularity we would need to gather official data (which is available, but different around the countries is guess)

joeyda3rd commented 3 years ago

https://www.kaggle.com/kaggle/us-baby-names https://github.com/hadley/data-baby-names/blob/master/baby-names.csv https://catalog.data.gov/dataset/baby-names-from-social-security-card-applications-national-level-data

I'm able to find US names quickly and easily, but can't find any worldwide names. Let's start with the US and expand on the next version, but look for a world list.

ragged commented 3 years ago

Alright, makes sense, just add the latest year of the datasets as an asset into the project i guess? I assume also adding a getter, so that the data is easily accessible?