The State of Statistics in Julia
johnmyleswhite.com
The State of Statistics in Julia
1–10 of 14 posts
Re: The State of Statistics in Julia
#2Re: The State of Statistics in Julia
#3It still seems quite immature, but I'm very excited about it's future.
Re: The State of Statistics in Julia
#4I 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.
[1] http://ipython.org/ipython-doc/dev/interactive/htmlnotebook....
Re: The State of Statistics in Julia
#5I 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.
Re: The State of Statistics in Julia
#6I 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....
Re: The State of Statistics in Julia
#7Re: The State of Statistics in Julia
#8I 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.
I tried Julia recently and am very excited about it as well, especially with the addition of DataFrames. The only thing that worries me is the disorganized nature of the Base and Core packages. I fear that 5 years from now Julia will have a mess of functions in the global namespace like PHP, rather than a clean standard library like Python. Is this fear misplaced?
Re: The State of Statistics in Julia
#9I 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.
I tried Julia recently and am very excited about it as well, especially with the addition of DataFrames. The only thing that worries me is the disorganized nature of the Base and Core packages. I fear that 5 years from now Julia will have a mess of functions in the global namespace like PHP, rather than a clean standard library like Python. Is this fear misplaced?
Re: The State of Statistics in Julia
#10Earlier quoted context omitted.
I tried Julia recently and am very excited about it as well, especially with the addition of DataFrames. The only thing that worries me is the disorganized nature of the Base and Core packages. I fear that 5 years from now Julia will have a mess of functions in the global namespace like PHP, rather than a clean standard library like Python. Is this fear misplaced?
The namespace mechanism was only added a few months ago and we're still working out some of the kinks with how it works. The plan going forward is to slice Base into an organized hierarchy but still have everything available by default without too many imports. The "using" keyword works rather similarly to the same keyword in C++ and now in Ruby 2.0 [1], and aims to give the best of both the "single huge namespace" (…
This is one of the biggest problems in Matlab, and 20+ years later, they still can't fix them, and the namespace problem is still huge.