I tried julia last week looking for an R replacement. I was pretty excited but the web REPL is broken on the current OSX build. Try as I might I could not get the web repl to run when building it myself. It still seems quite immature, but I'm very excited about it's future.
We're phasing out the web repl since it's not actively developed anymore. At some point I'm going to take a crack at providing a Julia backend to iPython Notebook [1]. [1] http://ipython.org/ipython-doc/dev/interactive/htmlnotebook....
The State of Statistics in Julia
11–14 of 14 posts
Re: The State of Statistics in Julia
#12Earlier quoted context omitted.
We're phasing out the web repl since it's not actively developed anymore. At some point I'm going to take a crack at providing a Julia backend to iPython Notebook [1]. [1] http://ipython.org/ipython-doc/dev/interactive/htmlnotebook....
That's unfortunate as I was trying to get an r-studio like experience.
Re: The State of Statistics in Julia
#13Re: The State of Statistics in Julia
#14This might be slightly off-topic, but are DataFrames intended to be similar to R's data.frame, where the contents of the entire table are loaded into memory and operated on all at once, or more like SQL with the possibility of aggregate functions calculated incrementally? Since a lot of statistics can be calculated incrementally (OLS, obviously, but even something like MLE based on nonlinear optimization, if you allo…