To display the super computer through out the years being used.
I downloaded the data from the ‘Our world in Data’ (https://ourworldindata.org/technological-change). I chose this data because since technology is a big part of todays generation I wanted to see the improvement of super computers.
Here is the link to the data.
the following code chunk is what packages I will use to read the data in preparation for my analysis.
glimpse(super_computer_power_flops)
Rows: 29
Columns: 4
$ Entity <chr> "World", "World", "Worl~
$ Code <chr> "OWID_WRL", "OWID_WRL",~
$ Year <int> 1993, 1994, 1995, 1996,~
$ Floating.Point.Operations.per.Second <dbl> 1.240e+11, 1.700e+11, 1~
#View(super_computer_power_flops)
check the amount of the year for 2015
Year code world
1 2015 33900000 World
2 2016 93000000 World
3 2017 93000000 World
4 2018 143500000 World
5 2019 148600000 World
6 2020 442000000 World
7 2021 442000000 World
write_csv(flops_per_year, file= "supercomputer-power-flops")