Below are the solutions to these exercises on “Cryptocurrency Data With R – Part 1.” ## install.packages(crypto) ## install.packages(ggplot2) library(crypto) library(ggplot2) #################### # # # Exercise 1 # # # #################### list_coin <- listCoins() #################### # # # Exercise 2 # # # #################### coins_data <- getPrices(limit=20) #################### # # # Exercise 3 # # […]
Analyzing Crypto-currency Data With R – Part 1: Exercises
R provides a lot of interesting packages to analyze cryptocurrency markets. The goal of this exercise is to introduce you to one of the packages (crypto) to retrieve cryptocurrency data in R, as well as building some basic plots to understand how these markets have behaved in recent times. Cryptocurrencies are digital assets that facilitates […]