Digraph from two columns of data
3 ビュー (過去 30 日間)
古いコメントを表示
For example, I have two columns of data in an excel sheet, Town and Time. I want to have a digraph that connects each town in the order they are given with time being the weight of the edges. Lets say that DataSet = readtable('FILE.xls').
This is probably really simple but I can't seem to work it out.
0 件のコメント
回答 (1 件)
Steven Lord
2019 年 4 月 25 日
>> names = ["Boston"; "New York"; "Chicago"; "Los Angeles"; "Washington DC"];
>> D = digraph(names(1:end-1), names(2:end))
Add the weight information as the third input in the digraph call. If the data is in something like a transit schedule form (like this schedule from the MBTA's Framingham/Worcester commuter rail line) you may need to call diff on the arrival time data to get the duration of each leg of the trip. Since digraph weights can't be datetime or duration values, you'll want to convert the duration data to seconds, minutes, hours, etc. depending on the durations of the trips.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Graph and Network Algorithms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!