假设我有一个变量ouput
,其中包含以下形式的json:
{"hello1":["bla1"],"hello2":["bla2"],"hello3":{"hello31":{"hello311":[7078],"hello312":[3429]},"hello32":{"hello321":[10],"hello322":[6]},"hello33":{"hello331":[4.6317],"hello332":[2.6322]}}}
我可以做些什么来转换ouput
这样可以轻松阅读?我想要这样的东西:
hello1 : bla1
hello2 : bla2
hello3 :
hello31 : hello311 : 7078
hello312 : 3429
hello32 : hello321 : 10
hello322 : 6
hello33 : hello331 : 4.6317
hello332 : 2.6322
答案 0 :(得分:0)
如果您只想检查json
,可以使用包listviewer
,它会在RStudio中呈现一个漂亮的小部件。
# install.packages("listviewer")
output <- '{"hello1":["bla1"],"hello2":["bla2"],"hello3":{"hello31":{"hello311":[7078],"hello312":[3429]},"hello32":{"hello321":[10],"hello322":[6]},"hello33":{"hello331":[4.6317],"hello332":[2.6322]}}}'
listviewer::jsonedit(output)
答案 1 :(得分:0)
您可以使用prettify
中的jsonlite
功能获得与输出类似的内容。
# Your object
my_json_object <- '{"hello1":["bla1"],"hello2":["bla2"],"hello3":{"hello31":{"hello311":[7078],"hello312":[3429]},"hello32":{"hello321":[10],"hello322":[6]},"hello33":{"hello331":[4.6317],"hello332":[2.6322]}}}'
prettify(my_json_object, indent = 2)
{
"hello1": [
"bla1"
],
"hello2": [
"bla2"
],
"hello3": {
"hello31": {
"hello311": [
7078
],
"hello312": [
3429
]
},
"hello32": {
"hello321": [
10
],
"hello322": [
6
]
},
"hello33": {
"hello331": [
4.6317
],
"hello332": [
2.6322
]
}
}
}