T hink about a blockchain as a distributed database that maintains a shared list of records. These records are called blocks, and each encrypted block of code contains the history of every block that came before it with timestamped transaction data down to the second. In effect, you know, chaining those blocks together. Hence blockchain Blockchain is the data structure that allows Bitcoin (BTC) and other up-and-coming cryptocurrencies such as Ether (ETH) to thrive through a combination of decentralized encryption, anonymity, immutability, and global scale . It’s the not-so-secret weapon behind the cryptocurrency’s rise, and to explain how blockchain came to be, we have to begin briefly with the legacy of Bitcoin. Welcome to our Blockchain future In the future, viewers will forego paying subscriptions to platforms and can instead give directly to the content providers they love. Creators will therefore receive a larger share of the pie. By allowing the blockchain to use their computer
M ain focus is to investigate the dataset Gapminder and interact with it. To illustrate the basic use of EDA in the dplyr,ggplot2 package, I use a “gapminder” datasets. This data is a data.frame created for the purpose of predicting sales volume. Using the dplyr package to perform data transformation and manipulation operations. Using the ggplot2 package to visually analyze our data. Load Packages #install.packages("gapminder") library(gapminder) library(dplyr) library(ggplot2) The variables are explained as follows: Country — factor with 142 levels Continent — Factor with 5 levels Year — ranges from 1952 to 2007 in increments of 5 years lifeExp — life expectancy at birth, in years pop — population dgoPercap — GDP per capita head(gapminder_unfiltered,5) #Unfiltered data tail(gapminder_unfiltered,5) Display name of Variables : names(gapminder_unfiltered) Data Cleaning : Finding the missing values as we can see this data has no missing values str(gapminder_unfiltered) summary