User Portlet User Portlet

Discussions
A crash is always a bug. You should post a minimal example that illustrates the problem, and also forward it to Wolfram support. [IGraph/M](https://github.com/szhorvat/IGraphM) has a function to combine parallel edges with a custom...
The inverse operation to GeoDisplacement is GeoDestination, so we can construct an inverse projection using it: polar[{x_, y_}] := GeoDisplacement[{Sqrt[x^2 + y^2], ArcTan[y, x]/Degree}]; InverseEAE[coords_, c_] := GeoDestination[c,...
I made a small package that makes it very easy to call the igraph library through RLink and do graph-computations.  It's not complete, for example it doesn't support edge weights.  You can use this library to verify results returned by Mathematica...
Hi. I am using the BetweennessCentrality function and I want to see it if is possible to weight the nodes in some form. For example, if nodes are warehouses and not all of them have the same size, then I might want to calculate the importance of a...