Fight for myself to develop machine learning with R
The day first, Call API from Bithumb.
It's on the website but, they don't give enough an explanation.
I have any idea about the computer, Statistics until the month before, so for me as a beginner, it's going to be a tough challenge. Anyway, Let's get to start.
First of all, Find out "proper packages"
After googling how to fetch the API, there were serval results of the packages I could get.
The list for the common results is following:
- "jsonlite" ; To convert JSON to R
- "revest" ; scrap the web page
- "httr"
Sounds like converting or scrapping data( HTML, JSON, XML....?perhaps)
-"ggplot2" ; it's for the graph
R> install.package("jsonlite") #to Download pck ; intall.package("")
R> library(jsonlite) #Adjust after download
R> library(ggplot2)