I followed https://www.youtube.com/watch?v=ljHLkuhhN2A
which is great
Just have one issue on R part (btw. That is the first time I am using R)
Running this code
ggplot(df, aes(x=block_timestamp, y=value_decimal)) +
geom_point()
raises the error
Error in FUN(X[[i]], ...) : object 'value_decimal' not found
I guess that field has changed or something.
Using value
instead seems to work but I am not sure if this is how it should be.