Diego Javier Zea

Results 81 issues of Diego Javier Zea

Works fine: ``` julia> using Benchmark julia> function bitlower() 'A' | 32 end julia> function bl(x) x | 32 end julia> function intlower() 'A' + 32 end julia> function il(x)...

Hi John!! What do you think is causing this inconsistent results of compare in subsequent runs. https://github.com/JuliaLang/julia/pull/3192#issuecomment-18353567 I see this happens when timing of the two functions are almost the...

``` julia> benchmark(() -> 10^2, "Squaring", 100) 1x12 DataFrame: BenchmarkCategory BenchmarkName Iterations TotalWall AverageWall MaxWall MinWall Timestamp JuliaVersion JuliaHash CodeHash OS [1,] "Squaring" "Squaring" 100 4.05312e-6 4.05312e-8 1.19209e-6 0.0 "2013-01-06...

Hi Julian! Good name for a Julia's user ;) I found this package on this [stackoverflow question](http://stackoverflow.com/questions/14970817/plot-not-defined-with-julia) but looks unmaintained. Actually for plots I (as a ggplot2 fan) was working...

Hi! As you will see in the following two screen captures, the slider to select the number of bins is not working: 1. (min) ![image](https://user-images.githubusercontent.com/2822757/145060951-d9f13c9f-2ff3-462e-9b02-2a6d5f83e8dd.png) 2. (max) ![image](https://user-images.githubusercontent.com/2822757/145060993-b60476ca-79c2-4c12-ac09-65019542d210.png) I have...

bug

Hi! The top density plot of the `marginalscatter` is incomplete as we can see in the following figure: ![image](https://user-images.githubusercontent.com/2822757/150166649-e9181320-7ef0-404c-8fd7-13112ccba1aa.png) It works fine in `marginalhist`. I'm using Pluto and ``` RDatasets...

bug

Using `DataFrames.describe` over a dataset with `NaN`s gives an error, because `quantiles` throws an error when the input has at least one `NaN`. DataFrames could manage that error using `try`,...

I have a GML file that has underscores in key names: ``` graph [ directed 1 id 42 label "splice graph of s-exons" node [ id 1 label "start" conservation...

Hi! Is it possible to get interactivity (particularly panning and zooming) enabled by default? Best,

Hi! The plots are being rendered as static SVG on Pluto right now. The problem has been solved in https://github.com/queryverse/VegaLite.jl/pull/401, but that change hasn't been released yet. It would be...