-
This is the code that gave me the problem:
```
probabilities = [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1]
function Hx(Ph)
return Ph == 0 || Ph == 1 ? 0 : -1 * ((Ph * log2(Ph)) + ((1-Ph) …
-
Whenever I have a Gadfly plot, Juno will continually pause as it tries to switch to "zoom" mode on the Gadfly plot. This is in OS X. I'm not sure whether this is an issue with Gadfly or with Juno.
…
-
When I set up a plot in Gadfly, I typically need to map data from a `struct`, I found that I can extend `Gadfly.evalmaping` to avoid writing wrappers.
```julia
using Gadfly
using KernelDensity
…
-
I'm trying to hide outliers in boxplot:
``` julia
x=dataset("lattice", "singer");
x[:OUT] = false;
plot(x, x="VoicePart", y="Height",outliers="OUT",Geom.boxplot)
```
However, I got following error:
…
-
Hi,
I've run into a very serious issue with Gadfly after upgrading my Mac to OS X 10.10 Yosemite. However, the issue might be completely unrelated to this OS upgrade.
I'm on the Julia 0.3.1 binary f…
-
I'd like to use a png as a background for a plot, in Compose and/or Gadfly. Is this currently possible?
-
It'd be great to smartly plot Signals. Some thoughts:
- Very long signals should be sub-sampled, using a binned min-max. It'd be great to recompute these as a user zooms, but this surely wouldn't be…
-
I'm opening this issue here, because I can demonstrate the issue using Compose. Note that there are some examples in Gadfly where this issue does currently occur (e.g. `Geom.boxplot`):
```julia
ctx …
-
On julia 0.5, most recent release of Compose, I followed the following instructions:
```
Cairo and Fontconfig are necessary for the PNG backend. Run:
Pkg.add("Cairo")
Pkg.add("Fontconfig")
Yo…
ghost updated
4 years ago
-
I am using Gadfly in Jupyter with Ijulia notebook. I can use `draw(SVG(25cm, 10cm), p1)` to display the plot in Jupyter, but I found it is not displayed in the `out[]` cell. So when I restart the kern…