Leandro Martínez

Results 43 issues of Leandro Martínez

## Details For example: ```julia julia> using Plots julia> histogram(rand(10), yformatter = x -> "test") ``` results in: ![image](https://github.com/JuliaPlots/Plots.jl/assets/31046348/9cde878f-b00a-48a4-af57-052c0b3d455b) ### Backends This bug occurs on ( insert `x` below )...

bug

One cool thing about Julia is that we can write a matrix as: ```julia R = @SMatrix[ cosθ -sinθ sinθ cosθ ] ``` However, the JuliaFormatter keeps transforming that to:...

https://github.com/JuliaStats/KernelDensity.jl/blob/ae70f461b6ac54c6d3d5e870deb140d21a8a8153/src/bivariate.jl#L21 Why do we carry this `permutedims`? This requires that `StatsPlots` explicitly perform the inverse transformation to plot a kde correctly, and it makes `Plots` default functions to plot the...

We have some machines with the following CPU: ``` 13th Gen Intel(R) Core(TM) i7-13700KF ``` These are advertised as being `16 cores / 24 threads` CPUs (https://www.intel.com/content/www/us/en/products/sku/230490/intel-core-i713700-processor-30m-cache-up-to-5-20-ghz/specifications.html). Thus, it seems...

I'm getting these warning, wrongly, in VSCode: ![image](https://github.com/julia-vscode/julia-vscode/assets/31046348/82772b73-c9c3-40a1-8cb3-8f91a4ad24e2) One may try to see if that happens with: ``` julia> dev Packmol ``` and check the src/mono_atomic.jl file. It is the...

I don't know if this can be easily solved by a compat entry update, but FloatingTableView was not letting me to update Makie: ``` (@v1.6) pkg> add [email protected] Updating registry...

I may be doing something wrong, by in my project I have something like: ```julia module MyPkg using TestItems include("somefile.jl") end ``` Inside `somefile.jl` there are some tests defined by...

I think this is a bug, although it may be that for some reason this behavior is expected: With a regular array, `diagm` preserves the element type: ```julia julia> using...

Many people has praised the way this site suggests organizing software documentation: https://documentation.divio.com/ Maybe it would be nice if the template generated by PkgTemplates created a structured docs following those...

new-feature

The idea is to have a macro, let us say, INTERNAL, such that a message warning the user that the function is internal is shown instead of the actual help...