I want to extract data from an API with some specifications. I have a json file as a list of length two. I want to generate a data frame with the function as.data.frame for the whole data set to be able to export it to Excel. Therefore I used the following code:
Interest <- GET("https://api.aleth.io/v0/defi/history?protocols=maker,compound,aave,dydx,ddex&assets=dai,usdc,usdt,tusd&metrics=earn_apr,borrow_apr&before=1601424000&after=1577836800")
Interest_content <- content(Interest, as="text", encoding = "UTF-8")
Interest_data <- Interest_content
Interest_jsondata <- jsonlite::fromJSON(Interest_data)
Interest_dataFrame <- as.data.frame(Interest_jsondata)
When calling the function as.data.frame on the json data, the following error is generated:
Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply differing number of rows: 1, 4, 2, 5
When looking into the Interest_jsondata, it occurs that the number of items (the number of rows) in "points" are differing. I guess that´s why the error in the as.data.frame function is generated.
How can that error be solved?
Let's look a the structure of
Interest_jsondata
.The first item is the list is a data.frame! The second item is another list. Maybe all you need to do is extract the first item?
This works without error. The resulting data.frame has a list column in it (
points
), and each item inpoints
looks like a matrix. The numbers of points in each matrix is not consistent, and how you deal with them is going to depend on your ultimate goal.Here are some
dplyr
functions to help visalize the data.frame better:The second element in your original json list gives some parameters for the data: initial and final values, the levels of factors, etc.