Diego Javier Zea

Results 81 issues of Diego Javier Zea

Hi! I have just noticed that `markersize` does not create a legend. ![image](https://user-images.githubusercontent.com/2822757/141524387-0901c865-a058-47c1-b4a5-271297939550.png) Code example: ```julia using RDatasets, AlgebraOfGraphics, CairoMakie set_aog_theme!() iris = dataset("datasets", "iris") plt = data(iris) * mapping(:PetalWidth,...

There is a tiny dot inside the nodes when using the plotly backend; it doesn't appear with GR. It is possible to see when the node fill color is white....

As the node sizes are scaled to fit their labels, nodes without labels aren't drawn. Maybe we can use a minimum node size to handle those cases. Example of the...

Hi! The `z` keyword argument is not working correctly as it is ignored by default (as the default `dim` is `2`), and it throws an error when `dim=3`. This is...

The `get_source_destiny_weight(g::Graphs.AbstractGraph)` function can use the `weights` function from Graphs to support for graphs with stored edge weights, such as MetaGraphs.

Maybe it could be great to unify the node and edge label behavior. At this moment, `names` don't skip `nothing` and throw an error with `missing`. For example: ![image](https://user-images.githubusercontent.com/2822757/155517407-4e729d2c-afa3-4091-b0cf-ecae0011be13.png) ```julia...

I have found that the default node size for 3D plots is too small, that using `curves=false` fails, and that `curvature_scalar` is ignored. For example: ![image](https://user-images.githubusercontent.com/2822757/155412543-c11ae806-1cde-4b40-a444-61c030c76f2e.png) ```julia ### A Pluto.jl...

Hi! As you can see in the figure, `graphplot` is plotting two vertices, even when three exist in the graph. ![image](https://user-images.githubusercontent.com/2822757/153755775-d0910f50-8ab5-478b-99d1-5a7d529ee4b5.png) Also, if there are no edges; `graphplot` throws `ArgumentError:...

``` using PlotRecipes using Plots const n = 15 const A = Float64[ rand() < 0.5 ? 0 : rand() for i=1:n, j=1:n] for i=1:n A[i, 1:i-1] = A[1:i-1, i]...

![graph_one](https://user-images.githubusercontent.com/2822757/49309894-072adf00-f4dd-11e8-8e4f-0d6c4d3de77c.png) ![graph_two](https://user-images.githubusercontent.com/2822757/49309891-02fec180-f4dd-11e8-999a-9a4d68e9e0a9.png) ![graph_three](https://user-images.githubusercontent.com/2822757/49309879-f9755980-f4dc-11e8-99c6-545f0e44f118.png) ![graph_four](https://user-images.githubusercontent.com/2822757/49310588-faa78600-f4de-11e8-95cf-4587d0ba1077.png) ![graph_five](https://user-images.githubusercontent.com/2822757/49309857-e3679900-f4dc-11e8-8b57-f878a6d9cb5e.png)