我想检索给定mongodb集合中所有文档中存在的所有嵌套键的名称。
E.g:
data <- data.frame(x=c(1,3,4,6),y=c(2,5,9,6),z=c(1,1,2,2))
data
ggplot(data,aes(x,y,label=x))+geom_point()+geom_text()+facet_grid(z~.,scales="free_y")
ggplotly()
我想获得唯一键(包括所有嵌套键),如:
[account,account_type,properties.title,properties.gender, properties.dob,properties.industry,properties.estd_on]