0

実験のデータを使用して生成された2Dグラフがあり、いくつかの実験のすべてのグラフとデータを保存したい

私は次のようなテーブルを使うことを考えていました

id  | value                                                             | n  
--------------------------------------------------------------------------------
1   | {"(0,0)","(125,100)","(200,200)","(297,300)","(4,400)","(5,500)"} |    6

id | x   | y
------------
1    0     0
1   125  100
1   200  200
1   297  300
1   4    400
1   5    500

しかし、それは良いアプローチではないと思います。最善の方法は何でしょうか。

4

1 に答える 1

1

私はこの構造を提案します:

ExpirementsTable

id | Title            | Descirption        | .... more info
------------------------------------------------------------------
10   Experiment title   some description
20   Experiment title   some description
30   Experiment title   some description

NodesTable

id| Name  | Description   | ExperimentID ....
------------------------------------------
1   text    more text...        10
2   text    more text...        10
3   text    more text...        10

TableEdges

id| SourceNode| TargetNode
----------------------------
1       1            2
2       1            3
3       3            2
4       3            1

各ノードのピクセルベースの位置を保存する必要がある場合は、ノードテーブルに(x、y)を追加します。

于 2013-02-28T04:03:36.713 に答える