我有一个 JSON 文件“adjFloatTest.data”。在 R 中,我使用以下代码从该文件中读取字段“Volume”:
json <- fromJSON("adjFloatTest.data")
volume <- json$volume
音量值如下
> volume
$AAPL
$AAPL[[1]]
1980-12-12
16751200
$AAPL[[2]]
1980-12-15
100424081
$AAPL[[3]]
1980-12-16
0.1177374
$AAPL[[4]]
1980-12-17
7164476
$AAPL[[5]]
1980-12-18
5364366
每个元素对应公司、日期、价值。我想将每个日期存储到一个列表中。怎么可能?