Public
Edited
Mar 6, 2024
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
data = [
{
year: 2015,
label: 'OpenAI Founded',
people: 'Elon Musk, Sam Altman, Greg Brockman, Ilya Sutskever, Wojciech Zaremba, John Schulman',
},
{
year: 2018,
label: 'Dota 2 Bot Beats Human Professionals',
people: 'OpenAI Five Team',
},
{
year: 2019,
label: 'Partnership with Microsoft',
people: 'Sam Altman, Greg Brockman, Satya Nadella (Microsoft CEO)',
},
{
year: 2020,
label: 'GPT-3 Released',
people: 'Ilya Sutskever, Greg Brockman, Sam Altman',
},
{
year: 2021,
label: 'Codex and DALL·E Announced',
people: 'OpenAI Team',
},
{
year: 2022,
label: 'ChatGPT Launched',
people: 'OpenAI Team',
},
{
year: 2023,
label: 'ChatGPT-4 Launched',
people: 'OpenAI Team',
},
// Add other key events related to OpenAI here.
]

Insert cell
Insert cell
preparedData = data
.map(function (d) {
// const people = d.people.split(" ").slice(-1);
const { text, numberOfLines } = wrapText(
`${d.label} (${d.people})`,
lineLength
);
return { ...d, text, numberOfLines };
})
.sort((a, b) => d3.ascending(a.year, b.year))
Insert cell
Insert cell
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

</style>
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more