Ioannis Filippidis
Ioannis Filippidis
One way to avoid issues caused by `NaN` values in lines would be to omit points with `NaN` values when plotting a line. `NaN`s are supported for surfaces, in particular...
Thanks for reporting this. Due to lack of time, this update hasn't been done for some time now, because I suspect that it may need an extensive rewrite, together with...
Thanks, [`rm`](https://en.wikipedia.org/wiki/Rm_%28Unix%29) is a *nix command. One windows machine may have [Cygwin](https://www.cygwin.com/) or [MinGW](http://www.mingw.org/) installed, which make `rm` available. A `which rm` or analogous should locate `rm`. This suggests replacing...
Addressed on branch `dev`, and awaiting to be merged into branch `main`.
This error is due to [API changes](https://github.com/networkx/networkx/blob/228cbd3761c23eab3ccc3d616093933876ce9f15/doc/release/migration_guide_from_1.x_to_2.0.rst) in `networkx >= 2.0.0`. `nx2tikz == 0.1.0` requires `networkx < 2.0.0`. #1 concerns the update of `nx2tikz` to the API of `networkx >=...
Another reason for incompatibility with Python 2.7 is the way of writing to a pipe: https://github.com/johnyf/nx2tikz/blob/e114a90f12a63e61a4daf3fae3ea5111f4975302/nx2tikz/nx2tikz.py#L111-L112 As of e114a90f12a63e61a4daf3fae3ea5111f4975302, I added a constraint to the required version of `networkx` in...
Same issue here with `osx fuse @ 2.6.2` and `os x @ 10.8.5`. The [above](https://github.com/osxfuse/osxfuse/issues/45#issuecomment-21943107) `pgrep` workaround worked for me, thanks.
Thanks for reporting this counting issue. Would it be possible to provide a minimal working example?
I would say that this behavior is in accord with the [documentation of the DOT language](https://graphviz.gitlab.io/_pages/doc/info/lang.html). > A graph may also be described as **strict**. This forbids the creation of...
It is possible to obtain the information that a method `get_strict_edges` would return, by asking GraphViz to layout the graph, and produce output as DOT, in particular: ```python graph.write_dot('test.dot') ```...