Diego Javier Zea

Results 61 comments of Diego Javier Zea

Another point in favor of exporting `PlotTheme` is that the keyword argument syntax is a lot nicer than the `Dict` one.

P.S.: I have found this when writing a book chapter on theme creation with Plots, Makie, and Gadfly. The Plots example for that chapter is here: https://github.com/PacktPublishing/Interactive-Visualization-with-Julia/blob/aa36c5bc32daa7fd689db82c75b39e29657d2b94/Chapter13/plots_themes.jl At the moment,...

Hi! It would be great to have `plot` and `imshow` working out of the box in Pluto! For the moment, I have found the following workaround using `gcf` to get...

I don't like the default colours (pink and light blue for edges and nodes) and I have a tendency to overuse grey I think.

Trying that inside of a function in IJulia is a little more tricky. `dev.off()` gives an error that I solved using: ```julia R""" if(names(dev.cur()) == c("svg")){dev.off()} """ ```

The plot command and the dev.off are used in a function definition, then the function is called in the other cells. That function with the R macro in its body...

The failing checks look unrelated to this PR.

NOTE: String interpolation is not working inside the macro.

NOTE: It doesn't work for packages that create their own `dev`ice inside a function, e.g.: https://www.rdocumentation.org/packages/factoextra/versions/1.0.7/topics/eigenvalue

`OneSampleADTest` does a [zscore transformation of the data](https://github.com/JuliaStats/HypothesisTests.jl/blob/master/src/anderson_darling.jl#L17). It's really testing if `zscore(x)`, instead of `x`, comes from the distribution `d`. `zscore(iris[:SepalWidth])` comes from `Normal(0,1)` but `iris[:SepalWidth]` should come from...