支持列表作为属性的图形文件格式
我想将图表存储到文件中。通常我会在 GraphML 中这样做。 但我的节点具有非标量属性(例如,节点“Alice”的属性“爱好”具有值[“游泳”、“阅读”])。 根据 GraphML 规范中的定义,节点的属性只能是标量,不能是列表。 我环顾四周,没有找到任何支持列表作为属性的图形文件格式。 有人知道这样的格式吗?
干杯,
曼努埃尔
I'd like to store a graph to a file. Usually I would do that in GraphML.
But my nodes have non-scalar properties (e.g. the property "hobby" of node "Alice" has the values ["swimming", "reading"]).
As defined in the GraphML specification, properties of nodes may only be scalars, not lists.
I looked around and did not find any graph file format that supports lists as properties.
Does anybody know such a format?
Cheers,
Manuel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 GraphML 是一种 XML,因此您可以使用自定义 XML 模式将您自己的自定义属性添加到 GraphML,其中可能包括添加列表。
扩展 GraphML 和 W3Schools 架构教程
Since GraphML is a type of XML, you can use a custom XML schema to be able to add in your own custom properties to GraphML, which could include adding lists.
Extending GraphML and W3Schools Schema Tutorial