I want to tell json parser that one of the columns should be POSIXct. How to do this, when the parser loses time information.
library(rvest)
library(jsonlite)
url = "http://www.cmegroup.com/CmeWS/mvc/Settlements/Futures/Settlements/5081/FUT?tradeDate=04/06/2018&strategy=DEFAULT&pageSize=500"
strJson <- html_text(read_html(url))
json <- map(strJson, ~fromJSON(.))
mData <- as.matrix(as.data.frame(json))
dat <- as.POSIXct(mData[,10], format='%H:%M:%S %d %b %Y')
All dat is NA