在igraph中绘制有向图时,我想对“入”边缘与“出”边缘使用不同的颜色,但是我找不到找到边缘方向的方法。如果我有该信息,则可以根据方向的类型设置E(g)$ color属性,在此处答案1的行中:How to set edge colors and vertex spacing with R / igraph建议按重量显示颜色:
// App.js
const { getAPI } = require('./some-location');
const { getInternal } = require('./some-other-location');
setInterval(() => {
getAPI();
getInternal();
}, 1000);
// Internal.js
function getAPI() {
request("https://some-website...", (err, res, body) => {
return myObj;
//console.log(myObj);
}
module.exports = { getApi };
// API.js
function getInternal() {
request("https://some-other-local-website...", (err, res, body) => {
return myObj;
//console.log(myObj);
}
module.exports = { getInternal };
感谢您的帮助或建议。