Jesse Perla
Jesse Perla
On https://lectures.quantecon.org/jl/tools_editors.html - [ ] We need to find a consistent way to have a julia startup file that works for both Atom, the REPL, the Debugger, and vscode. Might...
Subset of #653 @arnavs see this for the hubs. I tested on destkop On a desktop ```bash conda install -c conda-forge nodejs pip install jupyterlab-quickopen jupyter labextension install @jupyterlab/toc --no-build...
See https://github.com/JuliaCI/BenchmarkTools.jl/issues/118#issuecomment-425736436
See https://docs.julialang.org/en/v1/manual/variables/#Stylistic-Conventions-1 Also, good format for nt generator... Can't use capital case Also look at https://github.com/jrevels/YASGuide/blob/master/README.md and http://www.juliaopt.org/JuMP.jl/dev/style/
See https://github.com/JuliaLang/IJulia.jl/issues/867 If we did this, we would need to adjust the documentation directly. e.g. "click on jupyter icon" instead of running a terminal, etc.
For example, if it is a markov-chain model set of parameters, `mcmgen = @with_kw ( bla...)` and `mcm = mcmgen()`
``` @. df.x = ifelse(ismissing(df.x) & df.y > 0, val, df.x) df.x = ifelse.(ismissing.(df.x) .& df.y .> 0, val, df.x) ```
Add to the styleguide and in the intro to types section. ``` A = [1 2 3; 4 5 6] v = zeros(eltype(A), 4) # temp vector ```