This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create python file sankey.py | |
| import plotly.graph_objects as go | |
| nodes = [ | |
| "Received - 100%", # 0 | |
| "Bid - 14.190%", # 1 | |
| "No matched flights - 68.132%", # 2 | |
| "No eligible flights - 12.596%", # 3 | |
| "Bidder - 3.133%", # 4 | |
| "Privacy CCPA - 1.631%", # 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -module(hget). | |
| %% external exports | |
| -export([main/1]). | |
| main([Url]) -> | |
| application:ensure_all_started(gun), | |
| application:ensure_all_started(inets), | |
| UriMap = uri_string:parse(Url), |