-
`LanguageServer.jl` flags the following line incorrectly
```julia
import Gadfly.Geom: line, point, ribbon, render, element_aesthetics
```
I get back from the language server an event flagging …
-
I am having difficulty saving figures from PlotlyJS.jl and believe my issue may be related to ORCA.jl. I was hoping someone could help.
When I try to save a PlotlyJS.jl figure, as in the following …
-
Hi,
in the Readme, it says
using Soss
m = @model X begin
β ~ Normal() |> iid(size(X,2))
y ~ For(eachrow(X)) do x
Normal(x' * β, 1)
end
end;
…
zenon updated
4 years ago
-
Dear experts,
I am facing the following issue when updating the julia packages:
```julia
julia git:(master) ✗ ./julia
_
_ _ _(_)_ | Documentat…
-
I am getting inconsistent results executing the following in Julia.
```
using JuMP,CPLEX
I=[1,2];
m2 = JuMP.Model(solver=CPLEX.CplexSolver());
JuMP.@defVar(m2, w[I], Bin);
JuMP.@defVar(m2, y[I] >= 0)…
-
The following displays nothing in Jupyter, with or without the last line:
"""
Using Interact
s = slider(1:10)
display(s)
"""
I get an javascript error message upon the first line:
""""
…
-
**Describe the bug**
I get error while trying to create a new app
**Error stacktrace**
`Genie.newapp("MyGenieApp")`
`[ Info: Done! New app created at $HOME/Development/Julia/MyGenieApp`
`[ Info…
mrl00 updated
5 years ago
-
When referring to columns of a dataframe, the getting started guide of the documentation says
"Columns can be accessed via df.col or df[:col]. The latter syntax is more flexible as it allows passing …
-
```
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | …
-
Hello!
Nice package! Might be useful for my needs. I'm trying the following code and it throws an error. Not sure what might be the problem. Any hint appreciated!
The goal is to plot 3D data (lo…